diff --git a/.drone.yml b/.drone.yml index ffd63df..8ca2f6b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -1,3 +1,4 @@ +--- kind: pipeline type: docker name: docker-with-buildx @@ -37,4 +38,9 @@ services: volumes: - name: dockersock - temp: {} \ No newline at end of file + temp: {} +--- +kind: signature +hmac: 8717317b5c00e17259b1386f95862b486027882b40814ab20145c25c9e65984b + +... diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 829dd65..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,16 +0,0 @@ -image: docker:latest - -build: - stage: deploy - only: - - /^v.*$/ - except: - - branches - services: - - docker:dind - before_script: - - echo "$CI_REGISTRY_PASSWORD" | docker login $CI_REGISTRY --username $CI_REGISTRY_USER --password-stdin - script: - - docker build --no-cache -t "$CI_REGISTRY_IMAGE:latest" -t "$CI_REGISTRY_IMAGE:$CI_COMMIT_TAG" . - - docker push "$CI_REGISTRY_IMAGE:latest" - - docker push "$CI_REGISTRY_IMAGE:$CI_COMMIT_TAG" diff --git a/Dockerfile b/Dockerfile index 5d85c9a..47c5f5d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG BUILDX_VERSION=0.9.1 -ARG DOCKER_VERSION=20.10.22-dind-alpine3.17 +ARG BUILDX_VERSION=0.10.3 +ARG DOCKER_VERSION=20.10.23-dind-alpine3.17 FROM alpine AS fetcher