Update 3 files
- /Dockerfile-debian - /Dockerfile-ubuntu - /.gitlab-ci.yml
This commit is contained in:
parent
c41a81cf14
commit
debb788973
3 changed files with 6 additions and 6 deletions
|
|
@ -8,4 +8,4 @@ docker:
|
|||
- mkdir -p /kaniko/.docker
|
||||
- echo "{\"auths\":{\"$CI_REGISTRY\":{\"username\":\"$CI_REGISTRY_USER\",\"password\":\"$CI_REGISTRY_PASSWORD\"}}}" > /kaniko/.docker/config.json
|
||||
- /kaniko/executor --cache=true --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile-alpine --destination "$CI_REGISTRY_IMAGE/alpine:$CI_COMMIT_BRANCH"
|
||||
- /kaniko/executor --cache=true --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile-debian --destination "$CI_REGISTRY_IMAGE/debian:$CI_COMMIT_BRANCH"
|
||||
- /kaniko/executor --cache=true --context $CI_PROJECT_DIR --dockerfile $CI_PROJECT_DIR/Dockerfile-ubuntu --destination "$CI_REGISTRY_IMAGE/ubuntu:$CI_COMMIT_BRANCH"
|
||||
|
|
@ -1,5 +0,0 @@
|
|||
FROM debian
|
||||
|
||||
RUN apt -y update && \
|
||||
apt install -y curl jq bash git coreutils zip zsh
|
||||
CMD [ "zsh" ]
|
||||
5
Dockerfile-ubuntu
Normal file
5
Dockerfile-ubuntu
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
FROM ubuntu
|
||||
|
||||
RUN apt-get -y update && \
|
||||
apt-get install -y curl jq bash git coreutils zip zsh
|
||||
CMD [ "zsh" ]
|
||||
Loading…
Add table
Add a link
Reference in a new issue