2020-09-18 18:00:03 +02:00
|
|
|
FROM thecodingmachine/workadventure-back-base:latest as builder
|
|
|
|
WORKDIR /var/www/messages
|
|
|
|
COPY --chown=docker:docker messages .
|
|
|
|
RUN yarn install && yarn proto
|
|
|
|
|
2021-03-31 16:00:14 +02:00
|
|
|
# we are rebuilding on each deploy to cope with the PUSHER_URL environment URL
|
2020-07-27 22:48:04 +02:00
|
|
|
FROM thecodingmachine/nodejs:14-apache
|
2020-04-09 11:00:30 +02:00
|
|
|
|
2020-09-18 17:18:50 +02:00
|
|
|
COPY --chown=docker:docker front .
|
2020-09-24 11:16:08 +02:00
|
|
|
COPY --from=builder --chown=docker:docker /var/www/messages/generated /var/www/html/src/Messages/generated
|
2021-03-07 21:02:38 +01:00
|
|
|
|
|
|
|
# Removing the iframe.html file from the final image as this adds a XSS attack.
|
|
|
|
# iframe.html is only in dev mode to circumvent a limitation
|
|
|
|
RUN rm dist/iframe.html
|
|
|
|
|
2020-04-09 11:00:30 +02:00
|
|
|
RUN yarn install
|
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
2021-01-19 10:46:53 +01:00
|
|
|
ENV STARTUP_COMMAND_0="./templater.sh"
|
2020-04-09 11:00:30 +02:00
|
|
|
ENV STARTUP_COMMAND_1="yarn run build"
|
|
|
|
ENV APACHE_DOCUMENT_ROOT=dist/
|