Skip to content

Commit

Permalink
ci: switch to Docker 27 for Docker image build jobs on GitLab
Browse files Browse the repository at this point in the history
Docker 20 is no longer supported and Docker 27 is the current
major version of the Docker engine.
  • Loading branch information
striezel committed Oct 16, 2024
1 parent 4bc7cee commit e22cf26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .gitlab-ci.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
docker_image_debian:
image: docker:20
image: docker:27
stage: build
services:
- docker:20-dind
- docker:27-dind
script:
- cd ci/
- docker build -t $CI_REGISTRY/striezel/webp-viewer/debian:12 . -f Dockerfile_debian
Expand Down Expand Up @@ -33,10 +33,10 @@ debian:
- ctest -V

docker_image_fedora:
image: docker:20
image: docker:27
stage: build
services:
- docker:20-dind
- docker:27-dind
script:
- cd ci/
- docker build -t $CI_REGISTRY/striezel/webp-viewer/fedora:40 . -f Dockerfile_fedora
Expand Down

0 comments on commit e22cf26

Please sign in to comment.