honigle/Dockerfile
2022-01-17 19:43:05 +01:00

7 lines
68 B
Docker

FROM node
COPY . .
RUN npm install
EXPOSE 3000
CMD npm run start