diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 5a219a8..33a9e4e 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -109,6 +109,7 @@ gitlab-qa-ruby-3.0 test: *test_build gitlab-qa-alpine-ruby-2.7 test: *test_build gitlab-qa-alpine-ruby-3.0 test: *test_build gitlab-puppeteer test: *test_build +kaniko test: *test_build omnibus-gitlab-bionic test: *test_build omnibus-gitlab-centos7 test: *test_build omnibus-gitlab-centos8 test: *test_build @@ -171,6 +172,7 @@ gitlab-qa-ruby-3.0 push: *build_and_deploy gitlab-qa-alpine-ruby-2.7 push: *build_and_deploy gitlab-qa-alpine-ruby-3.0 push: *build_and_deploy gitlab-puppeteer push: *build_and_deploy +kaniko push: *build_and_deploy omnibus-gitlab-bionic push: *build_and_deploy omnibus-gitlab-centos7 push: *build_and_deploy omnibus-gitlab-centos8 push: *build_and_deploy diff --git a/Dockerfile.kaniko b/Dockerfile.kaniko new file mode 100644 index 0000000..e3147fd --- /dev/null +++ b/Dockerfile.kaniko @@ -0,0 +1,5 @@ +FROM gcr.io/kaniko-project/executor:debug-v1.3.0 AS kaniko +FROM alpine/git +COPY --from=kaniko /kaniko/executor /kaniko/ + +ENTRYPOINT ["/kaniko/executor"]