-
-
Notifications
You must be signed in to change notification settings - Fork 2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9426 from vector-im/travis/dockerfile-continued
Add Dockerfile (part 2)
- Loading branch information
Showing
4 changed files
with
108 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Exclude a bunch of stuff which can make the build context a larger than it needs to be | ||
.git/ | ||
test/ | ||
webapp/ | ||
lib/ | ||
node_modules/ | ||
electron_app/ | ||
karma-reports/ | ||
.idea/ | ||
.tmp/ | ||
config.json* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# Builder | ||
FROM node:10-alpine as builder | ||
|
||
# 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" | ||
|
||
RUN apk add --no-cache git dos2unix | ||
|
||
WORKDIR /src | ||
|
||
COPY . /src | ||
RUN dos2unix /src/scripts/docker-link-repos.sh && sh /src/scripts/docker-link-repos.sh | ||
RUN yarn install | ||
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 | ||
|
||
|
||
# App | ||
FROM nginx:latest | ||
|
||
COPY --from=builder /src/webapp /app | ||
|
||
RUN rm -rf /usr/share/nginx/html \ | ||
&& ln -s /app /usr/share/nginx/html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
#!/bin/sh | ||
|
||
set -ex | ||
|
||
if [ $USE_CUSTOM_SDKS == false ] | ||
then | ||
echo "skipping react-sdk and js-sdk installs: USE_CUSTOM_SDKS is false" | ||
exit 0 | ||
fi | ||
|
||
echo "Linking js-sdk" | ||
git clone $JS_SDK_REPO js-sdk | ||
cd js-sdk | ||
git checkout $JS_SDK_BRANCH | ||
yarn link | ||
yarn install | ||
cd ../ | ||
|
||
echo "Linking react-sdk" | ||
git clone $REACT_SDK_REPO react-sdk | ||
cd react-sdk | ||
git checkout $REACT_SDK_BRANCH | ||
yarn link | ||
yarn link matrix-js-sdk | ||
yarn install | ||
cd ../ | ||
|
||
echo "Setting up riot-web with react-sdk and js-sdk packages" | ||
yarn link matrix-js-sdk | ||
yarn link matrix-react-sdk |