mirror of
https://github.com/vector-im/element-web.git
synced 2026-05-26 17:08:21 +00:00
8870de65cb
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
24 lines
994 B
Docker
24 lines
994 B
Docker
ARG ELEMENT_VERSION=latest@sha256:c21772a1eabeededa19be591343f548995e458ec34ba8f27425ae923c10af82e
|
|
|
|
FROM --platform=$BUILDPLATFORM node:lts-alpine@sha256:d1b3b4da11eefd5941e7f0b9cf17783fc99d9c6fc34884a665f40a06dbdfc94f AS builder
|
|
|
|
ARG BUILD_CONTEXT
|
|
|
|
RUN apk add --no-cache jq
|
|
|
|
WORKDIR /app
|
|
COPY package.json yarn.lock ./
|
|
# Copy the package.json files of all modules & packages to ensure the frozen workspace lockfile holds up
|
|
RUN --mount=type=bind,target=/docker-context \
|
|
cd /docker-context/; \
|
|
find . -path ./node_modules -prune -o -name "package.json" -mindepth 0 -maxdepth 4 -exec cp --parents "{}" /app/ \;
|
|
RUN yarn install --frozen-lockfile --ignore-scripts
|
|
COPY tsconfig.json ./
|
|
COPY ./$BUILD_CONTEXT ./$BUILD_CONTEXT
|
|
RUN cd $BUILD_CONTEXT && yarn vite build
|
|
RUN mkdir /modules
|
|
RUN cp -r ./$BUILD_CONTEXT/lib/ /modules/$(jq -r '"\(.name)-v\(.version)"' ./$BUILD_CONTEXT/package.json)
|
|
|
|
FROM ghcr.io/element-hq/element-web:${ELEMENT_VERSION}
|
|
|
|
COPY --from=builder /modules /modules/ |