blog/Dockerfile
2019-12-24 11:37:29 +00:00

10 lines
81 B
Docker

FROM node:12-alpine
ADD . .
RUN npm install
EXPOSE 8000
CMD ["npm", "start"]