diff --git a/.drone.yml b/.drone.yml index 3e9a7a8..8b7f172 100644 --- a/.drone.yml +++ b/.drone.yml @@ -10,7 +10,7 @@ platform: steps: - name: build pull: always - image: rancher/hardened-build-base:v1.16.7b7 + image: rancher/hardened-build-base:v1.16.9b7 commands: - make DRONE_TAG=${DRONE_TAG} volumes: @@ -18,7 +18,7 @@ steps: path: /var/run/docker.sock - name: publish - image: rancher/hardened-build-base:v1.16.7b7 + image: rancher/hardened-build-base:v1.16.9b7 commands: - docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD - make DRONE_TAG=${DRONE_TAG} image-push image-manifest @@ -35,7 +35,7 @@ steps: - tag - name: scan - image: rancher/hardened-build-base:v1.16.7b7 + image: rancher/hardened-build-base:v1.16.9b7 commands: - make DRONE_TAG=${DRONE_TAG} image-scan volumes: diff --git a/Dockerfile b/Dockerfile index 15d950c..c1017d7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ ARG ARCH="amd64" -ARG TAG="v3.7.1" +ARG TAG="v3.8" ARG UBI_IMAGE=registry.access.redhat.com/ubi7/ubi-minimal:latest -ARG GO_IMAGE=rancher/hardened-build-base:v1.16.7b7 +ARG GO_IMAGE=rancher/hardened-build-base:v1.16.9b7 # Build the multus project FROM ${GO_IMAGE} as builder diff --git a/Makefile b/Makefile index 34ff454..76de68f 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ endif BUILD_META=-build$(shell date +%Y%m%d) ORG ?= rancher -TAG ?= v3.7.1$(BUILD_META) +TAG ?= v3.8$(BUILD_META) ifneq ($(DRONE_TAG),) TAG := $(DRONE_TAG)