workadventure/pusher/Dockerfile
2020-12-09 16:33:59 +01:00

10 lines
160 B
Docker

FROM thecodingmachine/nodejs:12
COPY --chown=docker:docker pusher .
RUN yarn install
ENV NODE_ENV=production
RUN yarn run tsc
CMD ["yarn", "run", "runprod"]