Explorar el Código

fix Dockerfile

afrokick hace 5 años
padre
commit
2ee176e690
Se han modificado 1 ficheros con 1 adiciones y 3 borrados
  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"]