diff --git a/.gitlab-ci.yaml b/.gitlab-ci.yaml new file mode 100644 index 0000000..e5e655a --- /dev/null +++ b/.gitlab-ci.yaml @@ -0,0 +1,20 @@ +variables: + DOCKER_DRIVER: overlay + CI_APPLICATION_REPOSITORY: "$CI_REGISTRY_IMAGE" + CI_APPLICATION_TAG: "$CI_COMMIT_SHA" +services: + - docker:stable-dind +stages: + - build +build: + stage: build + images: "registry.gitlab.com/gitlab-org/cluster-integration/auto-build-image/master:stable" + services: + - name: docker:stable-dind + command: + - dockerd + - "--host=unix:///var/run/docker.sock" + - "--host=tcp://0.0.0.0:2375" + - "--mtu=1450" + script: + - /build/build.sh diff --git a/Dockerfile b/Dockerfile index 50c7bcf..d17c735 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ FROM alpine:3.11 AS build ARG CHANNEL=unstable -ARG VERSION=0.99.1-127 +ARG VERSION=0.100.0-153 ARG ARCH=amd64 RUN mkdir /build