Update element/Makefile, element/Dockerfile, .gitlab-ci.yml files

This commit is contained in:
2021-05-04 09:34:02 +00:00
parent e909a33232
commit 8695a0eaa5
3 changed files with 32 additions and 4 deletions

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) .