mirror of
https://gitlab.com/alemaire/buildx.git
synced 2025-01-10 10:43:28 +00:00
Update element/Makefile, element/Dockerfile, .gitlab-ci.yml files
This commit is contained in:
parent
e909a33232
commit
8695a0eaa5
@ -7,16 +7,16 @@ 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/*
|
||||
|
||||
|
8
element/Dockerfile
Normal file
8
element/Dockerfile
Normal file
@ -0,0 +1,8 @@
|
||||
FROM nginx: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
20
element/Makefile
Normal 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) .
|
Loading…
Reference in New Issue
Block a user