Browse Source

fix Dockerfile

afrokick 5 năm trước cách đây
mục cha
commit
2ee176e690
1 tập tin đã thay đổi với 1 bổ sung3 xóa
  1. 1 3
      Dockerfile

+ 1 - 3
Dockerfile

@@ -2,10 +2,8 @@ FROM node:alpine
 RUN mkdir /peer-server
 WORKDIR /peer-server
 COPY bin ./bin
+COPY dist ./dist
 COPY package.json .
-COPY src ./src
-COPY config ./config
-COPY app.json .
 RUN npm install
 EXPOSE 9000
 ENTRYPOINT ["node", "bin/peerjs"]