Archived
Private
Public Access
1
0
This repository has been archived on 2026-02-04. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
BetterIServ/.gitlab-ci.yml
2023-09-12 17:15:24 +02:00

19 lines
581 B
YAML

variables:
DOCKER_IMAGE: registry.gitlab.com/leon.hoppe/betteriserv
build-frontend:
image: docker:latest
stage: build
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD registry.gitlab.com
- docker build -t $DOCKER_IMAGE:frontend BetterIServ.Mobile/
- docker push $DOCKER_IMAGE:frontend
build-backend:
image: docker:latest
stage: build
script:
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD registry.gitlab.com
- docker build -t $DOCKER_IMAGE:backend BetterIServ.Backend/
- docker push $DOCKER_IMAGE:backend