workadventure/pusher/Dockerfile

10 lines
160 B
Docker
Raw Normal View History

FROM thecodingmachine/nodejs:12
2020-12-09 16:33:59 +01:00
COPY --chown=docker:docker pusher .
RUN yarn install
ENV NODE_ENV=production
2020-12-09 16:33:59 +01:00
RUN yarn run tsc
2020-12-09 16:33:59 +01:00
CMD ["yarn", "run", "runprod"]