Add MSC3916-compatible giphy media repo proxy

This commit is contained in:
Tulir Asokan
2024-06-19 11:47:35 +03:00
parent 6332613e13
commit 5da539ad84
6 changed files with 176 additions and 0 deletions

10
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,10 @@
build giphy proxy docker:
image: docker:stable
stage: build
before_script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
script:
- docker build -t $CI_REGISTRY_IMAGE/giphyproxy:latest giphyproxy
- docker push $CI_REGISTRY_IMAGE/giphyproxy:latest
only:
- master