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