workadventure/back/Dockerfile
2020-04-09 11:00:30 +02:00

9 lines
113 B
Docker

FROM thecodingmachine/nodejs:12
COPY . .
RUN yarn install
ENV NODE_ENV=production
CMD ['yarn', 'run', 'prod']