From 8bdc9dc746815b542244efde854faf9d10b8627b Mon Sep 17 00:00:00 2001 From: Adar Nimrod <nimrod@shore.co.il> Date: Sat, 29 May 2021 22:53:12 +0300 Subject: [PATCH] Tag the httpd image. Both latest and buster tags. --- .gitlab-ci.yml | 15 +++++++++++++-- httpd/{ => buster}/.dockerignore | 0 httpd/{ => buster}/Dockerfile | 0 3 files changed, 13 insertions(+), 2 deletions(-) rename httpd/{ => buster}/.dockerignore (100%) rename httpd/{ => buster}/Dockerfile (100%) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 6f13063..f83587a 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -62,12 +62,12 @@ push-cgit: - job: build-cgit artifacts: true -# httpd image: +# httpd latest image: build-httpd: extends: .build variables: - CONTEXT: httpd + CONTEXT: httpd/buster push-httpd: extends: .push @@ -76,3 +76,14 @@ push-httpd: needs: - job: build-httpd artifacts: true + +# httpd buster image: + +push-httpd-buster: + extends: .push + variables: + IMAGE: httpd + TAG: buster + needs: + - job: build-httpd + artifacts: true diff --git a/httpd/.dockerignore b/httpd/buster/.dockerignore similarity index 100% rename from httpd/.dockerignore rename to httpd/buster/.dockerignore diff --git a/httpd/Dockerfile b/httpd/buster/Dockerfile similarity index 100% rename from httpd/Dockerfile rename to httpd/buster/Dockerfile -- GitLab