mirror of
https://github.com/SchildiChat/element-web.git
synced 2024-10-01 01:26:12 -04:00
b0abbfacd4
* Centralise version scripts and fix Docker version * Refactor generation of a git-hash-based version into get-version-from-git * Refactor normalization of versions (stripping leading v) into normalize-version.sh * Call get-version-from-git from ci_package.sh, call normalize-version from package.sh * Refactor docker-write-version.sh into docker-package.sh, which both writes the version file and invokes yarn build passing VERSION * Normalize the version received from the server
38 lines
1.2 KiB
Docker
38 lines
1.2 KiB
Docker
# Builder
|
|
FROM node:14-buster as builder
|
|
|
|
# Support custom branches of the react-sdk and js-sdk. This also helps us build
|
|
# images of element-web develop.
|
|
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
|
|
|
|
WORKDIR /src
|
|
|
|
COPY . /src
|
|
RUN dos2unix /src/scripts/docker-link-repos.sh && bash /src/scripts/docker-link-repos.sh
|
|
RUN yarn --network-timeout=100000 install
|
|
|
|
RUN dos2unix /src/scripts/docker-package.sh && bash /src/scripts/docker-package.sh
|
|
|
|
# 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
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=builder /src/webapp /app
|
|
|
|
# Insert wasm type into Nginx mime.types file so they load correctly.
|
|
RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types
|
|
|
|
# Override default nginx config
|
|
COPY /nginx/conf.d/default.conf /etc/nginx/conf.d/default.conf
|
|
|
|
RUN rm -rf /usr/share/nginx/html \
|
|
&& ln -s /app /usr/share/nginx/html
|