blog/Dockerfile

10 lines
81 B
Docker

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