element-web/Dockerfile

35 lines
1.0 KiB
Docker
Raw Normal View History

# Builder
FROM --platform=$BUILDPLATFORM node:20-bullseye as builder
2019-04-10 23:47:02 +02:00
# Support custom branches of the react-sdk and js-sdk. This also helps us build
# 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"
RUN apt-get update && apt-get install -y git dos2unix
2019-04-10 23:47:02 +02:00
WORKDIR /src
COPY . /src
RUN dos2unix /src/scripts/docker-link-repos.sh && bash /src/scripts/docker-link-repos.sh
2023-05-16 10:43:02 +02:00
RUN yarn --network-timeout=200000 install
RUN dos2unix /src/scripts/docker-package.sh && bash /src/scripts/docker-package.sh
2019-04-10 23:47:02 +02: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
# App
2023-03-29 09:30:16 +02:00
FROM nginx:alpine-slim
COPY --from=builder /src/webapp /app
2021-09-28 13:15:34 +02:00
# Override default nginx config
2021-09-28 14:24:44 +02:00
COPY /nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf
2021-09-28 13:15:34 +02:00
RUN rm -rf /usr/share/nginx/html \
&& ln -s /app /usr/share/nginx/html