element-web/Dockerfile

32 lines
1,023 B
Text
Raw Normal View History

# Builder
FROM --platform=$BUILDPLATFORM node:20-bullseye as builder
# Support custom branch of the js-sdk. This also helps us build images of element-web develop.
2019-04-11 00:47:02 +03:00
ARG USE_CUSTOM_SDKS=false
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-11 00:47:02 +03:00
WORKDIR /src
COPY . /src
RUN dos2unix /src/scripts/docker-link-repos.sh && bash /src/scripts/docker-link-repos.sh
2023-05-16 11:43:02 +03:00
RUN yarn --network-timeout=200000 install
2024-08-06 22:10:20 +03:00
RUN dos2unix /src/scripts/docker-package.sh /src/scripts/get-version-from-git.sh /src/scripts/normalize-version.sh && bash /src/scripts/docker-package.sh
2019-04-11 00:47:02 +03: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 10:30:16 +03:00
FROM nginx:alpine-slim
COPY --from=builder /src/webapp /app
2021-09-28 14:15:34 +03:00
# Override default nginx config
2021-09-28 15:24:44 +03:00
COPY /nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf
2021-09-28 14:15:34 +03:00
RUN rm -rf /usr/share/nginx/html \
&& ln -s /app /usr/share/nginx/html