2018-12-04 16:00:16 +01:00
|
|
|
# Builder
|
2020-07-16 07:54:26 +02:00
|
|
|
FROM node:12 as builder
|
2018-12-04 16:00:16 +01:00
|
|
|
|
2019-04-10 23:47:02 +02:00
|
|
|
# Support custom branches of the react-sdk and js-sdk. This also helps us build
|
2020-10-28 15:32:25 +01:00
|
|
|
# images of element-web develop.
|
2019-04-10 23:47:02 +02:00
|
|
|
ARG USE_CUSTOM_SDKS=false
|
|
|
|
ARG REACT_SDK_REPO="https://github.com/matrix-org/matrix-react-sdk.git"
|
|
|
|
ARG REACT_SDK_BRANCH="master"
|
|
|
|
ARG JS_SDK_REPO="https://github.com/matrix-org/matrix-js-sdk.git"
|
|
|
|
ARG JS_SDK_BRANCH="master"
|
2018-12-04 16:00:16 +01:00
|
|
|
|
2020-07-14 13:37:16 +02:00
|
|
|
RUN apt-get update && apt-get install -y git dos2unix \
|
2020-07-31 14:25:21 +02:00
|
|
|
# These packages are required for building Canvas on architectures like Arm
|
|
|
|
# See https://www.npmjs.com/package/canvas#compiling
|
2020-07-14 13:37:16 +02:00
|
|
|
build-essential libcairo2-dev libpango1.0-dev libjpeg-dev libgif-dev librsvg2-dev
|
2018-12-04 16:00:16 +01:00
|
|
|
|
2019-04-10 23:47:02 +02:00
|
|
|
WORKDIR /src
|
2018-12-06 10:00:20 +01:00
|
|
|
|
|
|
|
COPY . /src
|
2020-01-22 18:44:18 +01:00
|
|
|
RUN dos2unix /src/scripts/docker-link-repos.sh && bash /src/scripts/docker-link-repos.sh
|
2019-05-15 23:12:33 +02:00
|
|
|
RUN yarn --network-timeout=100000 install
|
2019-04-10 23:47:02 +02:00
|
|
|
RUN yarn build
|
|
|
|
|
|
|
|
# Copy the config now so that we don't create another layer in the app image
|
|
|
|
RUN cp /src/config.sample.json /src/webapp/config.json
|
2018-12-04 16:00:16 +01:00
|
|
|
|
2019-12-03 00:58:50 +01:00
|
|
|
# Ensure we populate the version file
|
2020-01-22 18:44:18 +01:00
|
|
|
RUN dos2unix /src/scripts/docker-write-version.sh && bash /src/scripts/docker-write-version.sh
|
2019-12-03 00:58:50 +01:00
|
|
|
|
2018-12-04 16:00:16 +01:00
|
|
|
|
|
|
|
# App
|
2019-05-27 10:57:37 +02:00
|
|
|
FROM nginx:alpine
|
2018-12-04 16:00:16 +01:00
|
|
|
|
|
|
|
COPY --from=builder /src/webapp /app
|
|
|
|
|
2020-01-15 13:01:38 +01:00
|
|
|
# Insert wasm type into Nginx mime.types file so they load correctly.
|
2020-01-15 18:07:38 +01:00
|
|
|
RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types
|
2020-01-15 13:01:38 +01:00
|
|
|
|
2018-12-04 16:00:16 +01:00
|
|
|
RUN rm -rf /usr/share/nginx/html \
|
|
|
|
&& ln -s /app /usr/share/nginx/html
|