Fixing pusher dockerfile

This commit is contained in:
David Négrier 2020-12-09 16:36:50 +01:00
parent 1a5078f87d
commit b12e07d353
1 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,12 @@
FROM thecodingmachine/workadventure-back-base:latest as builder
WORKDIR /var/www/messages
COPY --chown=docker:docker messages .
RUN yarn install && yarn proto
FROM thecodingmachine/nodejs:12
COPY --chown=docker:docker pusher .
COPY --from=builder --chown=docker:docker /var/www/messages/generated /usr/src/app/src/Messages/generated
RUN yarn install
ENV NODE_ENV=production