2018-12-04 16:00:16 +01:00
|
|
|
# Builder
|
2025-01-03 23:54:52 +01:00
|
|
|
FROM --platform=$BUILDPLATFORM node:22-bullseye AS builder
|
2018-12-04 16:00:16 +01:00
|
|
|
|
2024-10-15 15:57:26 +02:00
|
|
|
# Support custom branch of the 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 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
|
|
|
|
2019-04-10 23:47:02 +02:00
|
|
|
WORKDIR /src
|
2018-12-06 10:00:20 +01:00
|
|
|
|
|
|
|
COPY . /src
|
2025-01-02 14:50:17 +01:00
|
|
|
RUN /src/scripts/docker-link-repos.sh
|
2023-05-16 10:43:02 +02:00
|
|
|
RUN yarn --network-timeout=200000 install
|
2025-01-02 14:50:17 +01:00
|
|
|
RUN /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
|
2018-12-04 16:00:16 +01:00
|
|
|
|
|
|
|
# App
|
2023-03-29 09:30:16 +02:00
|
|
|
FROM nginx:alpine-slim
|
2018-12-04 16:00:16 +01:00
|
|
|
|
|
|
|
COPY --from=builder /src/webapp /app
|
|
|
|
|
2025-01-03 12:46:12 +01:00
|
|
|
# Override default nginx config. Templates in `/etc/nginx/templates` are passed
|
|
|
|
# through `envsubst` by the nginx docker image entry point.
|
|
|
|
COPY /docker/nginx-templates/* /etc/nginx/templates/
|
2021-09-28 13:15:34 +02:00
|
|
|
|
2025-01-03 23:54:52 +01:00
|
|
|
# Tell nginx to put its pidfile elsewhere, so it can run as non-root
|
|
|
|
RUN sed -i -e 's,/var/run/nginx.pid,/tmp/nginx.pid,' /etc/nginx/nginx.conf
|
|
|
|
|
|
|
|
# nginx user must own the cache and etc directory to write cache and tweak the nginx config
|
|
|
|
RUN chown -R nginx:0 /var/cache/nginx /etc/nginx
|
|
|
|
RUN chmod -R g+w /var/cache/nginx /etc/nginx
|
|
|
|
|
2018-12-04 16:00:16 +01:00
|
|
|
RUN rm -rf /usr/share/nginx/html \
|
2021-06-23 14:42:30 +02:00
|
|
|
&& ln -s /app /usr/share/nginx/html
|
2025-01-03 12:46:12 +01:00
|
|
|
|
2025-01-03 23:54:52 +01:00
|
|
|
# Run as nginx user by default
|
|
|
|
USER nginx
|
|
|
|
|
2025-01-03 12:46:12 +01:00
|
|
|
# HTTP listen port
|
|
|
|
ENV ELEMENT_WEB_PORT=80
|