2020-04-09 11:00:30 +02:00
|
|
|
# we are rebuilding on each deploy to cope with the API_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 .
|
|
|
|
COPY --chown=docker:docker messages /var/www/messages
|
2020-04-09 11:00:30 +02:00
|
|
|
RUN yarn install
|
2020-09-18 17:39:59 +02:00
|
|
|
RUN cd /var/www/messages && yarn install
|
2020-04-09 11:00:30 +02:00
|
|
|
|
|
|
|
ENV NODE_ENV=production
|
|
|
|
ENV STARTUP_COMMAND_1="yarn run build"
|
|
|
|
ENV APACHE_DOCUMENT_ROOT=dist/
|