Files
FEDEO/.gitlab-ci.yml
flfeders ca62d492ba Changes in CI/CD
Added Entries to HelpSlideover.vue
Removed Chip Display from index notifications bell
2024-04-08 15:42:05 +02:00

19 lines
359 B
YAML

before_script:
- docker info
stages:
- build
build-web:
stage: build
tags:
- shell
- docker-daemon
variables:
IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG
script:
- echo $IMAGE_TAG
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
- docker build -t $IMAGE_TAG .
- docker push $IMAGE_TAG