Files
example-node-project/Dockerfile
2020-04-16 10:02:14 +02:00

6 lines
93 B
Docker

FROM node:9-slim
ENV PORT 8080
EXPOSE 8080
WORKDIR /usr/src/app
COPY . .
CMD ["npm", "start"]