Compare commits

...

4 Commits

3 changed files with 33 additions and 5 deletions

View File

@ -7,18 +7,18 @@ variables:
DOCKER_BUILDKIT: 1
dev-minio:
element:
stage: build
tags:
- docker
script:
- cd minio
- make nopush
- cd element
- make push
only:
variables:
- $CI_COMMIT_REF_PROTECTED == "false"
- $CI_COMMIT_REF_PROTECTED == "true"
changes:
- minio/*
- element/*
minio:
stage: build

8
element/Dockerfile Normal file
View File

@ -0,0 +1,8 @@
FROM nginx:1.20.0-alpine
COPY ./element /app
# Insert wasm type into Nginx mime.types file so they load correctly.
RUN sed -i '3i\ \ \ \ application/wasm wasm\;' /etc/nginx/mime.types \
&& rm -rf /usr/share/nginx/html \
&& ln -s /app /usr/share/nginx/html

20
element/Makefile Normal file
View File

@ -0,0 +1,20 @@
NAMESPACE=alemairebe
IMAGE=element
VERSION=v1.7.26
push: get decompress build
get:
wget https://github.com/vector-im/element-web/releases/download/${VERSION}/element-${VERSION}.tar.gz
decompress:
tar -xf element-$(VERSION).tar.gz
mv element-$(VERSION) element
mv element/config.sample.json element/config.json
build:
docker buildx build --platform linux/amd64,linux/arm64,linux/arm --push \
--cache-from=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
--cache-to=type=registry,ref=${NAMESPACE}/buildx:${IMAGE} \
--tag ${NAMESPACE}/${IMAGE}:$(VERSION) \
--tag ${CI_REGISTRY_IMAGE}/${IMAGE}:$(VERSION) .