2018-12-04 16:00:16 +01:00
|
|
|
# Builder
|
2019-04-10 23:47:02 +02:00
|
|
|
FROM node:10-alpine as builder
|
2018-12-04 16:00:16 +01:00
|
|
|
|
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 riot-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"
|
2018-12-04 16:00:16 +01:00
|
|
|
|
2019-04-10 23:47:02 +02:00
|
|
|
RUN apk add --no-cache git dos2unix
|
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
|
2019-04-10 23:47:02 +02:00
|
|
|
RUN dos2unix /src/scripts/docker-link-repos.sh && sh /src/scripts/docker-link-repos.sh
|
2019-05-15 23:12:33 +02:00
|
|
|
RUN yarn --network-timeout=100000 install
|
2019-04-10 23:47:02 +02:00
|
|
|
RUN yarn build
|
|
|
|
|
|
|
|
# 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
|
2019-05-27 10:57:37 +02:00
|
|
|
FROM nginx:alpine
|
2018-12-04 16:00:16 +01:00
|
|
|
|
|
|
|
COPY --from=builder /src/webapp /app
|
|
|
|
|
|
|
|
RUN rm -rf /usr/share/nginx/html \
|
|
|
|
&& ln -s /app /usr/share/nginx/html
|