2018-12-04 10:00:16 -05:00
|
|
|
# Builder
|
2021-01-25 07:58:39 -05:00
|
|
|
FROM node:14-buster as builder
|
2018-12-04 10:00:16 -05:00
|
|
|
|
2019-04-10 17:47:02 -04:00
|
|
|
# Support custom branches of the react-sdk and js-sdk. This also helps us build
|
2020-10-28 10:32:25 -04:00
|
|
|
# images of element-web develop.
|
2019-04-10 17:47:02 -04: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 10:00:16 -05:00
|
|
|
|
2021-07-13 04:58:41 -04:00
|
|
|
RUN apt-get update && apt-get install -y git dos2unix
|
2018-12-04 10:00:16 -05:00
|
|
|
|
2019-04-10 17:47:02 -04:00
|
|
|
WORKDIR /src
|
2018-12-06 04:00:20 -05:00
|
|
|
|
|
|
|
COPY . /src
|
2020-01-22 12:44:18 -05:00
|
|
|
RUN dos2unix /src/scripts/docker-link-repos.sh && bash /src/scripts/docker-link-repos.sh
|
2019-05-15 17:12:33 -04:00
|
|
|
RUN yarn --network-timeout=100000 install
|
2019-04-10 17:47:02 -04: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 10:00:16 -05:00
|
|
|
|
2019-12-02 18:58:50 -05:00
|
|
|
# Ensure we populate the version file
|
2020-01-22 12:44:18 -05:00
|
|
|
RUN dos2unix /src/scripts/docker-write-version.sh && bash /src/scripts/docker-write-version.sh
|
2019-12-02 18:58:50 -05:00
|
|
|
|
2018-12-04 10:00:16 -05:00
|
|
|
|
|
|
|
# App
|
2019-05-27 04:57:37 -04:00
|
|
|
FROM nginx:alpine
|
2018-12-04 10:00:16 -05:00
|
|
|
|
|
|
|
COPY --from=builder /src/webapp /app
|
|
|
|
|
2020-01-15 07:01:38 -05:00
|
|
|
# Insert wasm type into Nginx mime.types file so they load correctly.
|
2021-03-31 19:59:39 -04:00
|
|
|
RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types
|
2020-01-15 07:01:38 -05:00
|
|
|
|
2021-09-28 07:15:34 -04:00
|
|
|
# Override default nginx config
|
|
|
|
COPY /nginx/config.d/default.conf /etc/nginx/config.d/default.conf
|
|
|
|
|
2018-12-04 10:00:16 -05:00
|
|
|
RUN rm -rf /usr/share/nginx/html \
|
2021-06-23 08:42:30 -04:00
|
|
|
&& ln -s /app /usr/share/nginx/html
|