honigle/Dockerfile

8 lines
68 B
Text
Raw Normal View History

2022-01-17 19:43:05 +01:00
FROM node
COPY . .
RUN npm install
EXPOSE 3000
CMD npm run start