1
0
Fork 0

ci: build and push docker image

Signed-off-by: Vojtech Mares <iam@vojtechmares.com>
This commit is contained in:
Vojtěch Mareš 2024-01-02 19:13:31 +01:00
parent da0b92c936
commit 38e1389976
Signed by: vojtech.mares
GPG key ID: C6827B976F17240D

18
.gitlab-ci.yml Normal file
View file

@ -0,0 +1,18 @@
default:
image: ubuntu:22.04
stages:
- build
- deploy
build:
stage: build
variables:
IMAGE: $CI_REGISTRY_IMAGE
TAG: $CI_COMMIT_BRANCH-$CI_COMMIT_SHORT_SHA
before_script:
- echo $CI_REGISTRY_PASSWORD | docker login -u $CI_REGISTRY_USER --password-stdin $CI_REGISTRY
- docker info
script:
- docker build -t $IMAGE:$TAG .
- docker push $IMAGE:$TAG