getting-started/app/Dockerfile
2021-04-27 08:25:35 +08:00

5 lines
105 B
Docker

FROM node:12-alpine
WORKDIR /app
COPY . .
RUN yarn install --production
CMD ["node", "/app/src/index.js"]