diff --git a/.drone.yml b/.drone.yml index 85e4f29..52a5c79 100644 --- a/.drone.yml +++ b/.drone.yml @@ -9,7 +9,7 @@ platform: steps: - name: build pull: always - image: rancher/hardened-build-base:v1.15.8b5 + image: rancher/hardened-build-base:v1.16.4b7 commands: - make DRONE_TAG=${DRONE_TAG} volumes: @@ -17,7 +17,7 @@ steps: path: /var/run/docker.sock - name: publish - image: rancher/hardened-build-base:v1.15.8b5 + image: rancher/hardened-build-base:v1.16.4b7 commands: - docker login -u $DOCKER_USERNAME -p $DOCKER_PASSWORD - make DRONE_TAG=${DRONE_TAG} image-push image-manifest @@ -34,7 +34,7 @@ steps: - tag - name: scan - image: rancher/hardened-build-base:v1.15.8b5 + image: rancher/hardened-build-base:v1.16.4b7 commands: - make DRONE_TAG=${DRONE_TAG} image-scan volumes: diff --git a/Dockerfile b/Dockerfile index 6b26121..444ccf6 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ ARG UBI_IMAGE=registry.access.redhat.com/ubi7/ubi-minimal:latest -ARG GO_IMAGE=rancher/hardened-build-base:v1.15.8b5 +ARG GO_IMAGE=rancher/hardened-build-base:v1.16.4b7 FROM ${UBI_IMAGE} as ubi FROM ${GO_IMAGE} as builder # setup required packages @@ -15,7 +15,7 @@ RUN set -x \ # setup the build ARG PKG="github.com/opencontainers/runc" ARG SRC="github.com/opencontainers/runc" -ARG TAG="v1.0.0-rc92" +ARG TAG="v1.0.0-rc94" RUN git clone --depth=1 https://${SRC}.git $GOPATH/src/${PKG} WORKDIR $GOPATH/src/${PKG} RUN git fetch --all --tags --prune diff --git a/Makefile b/Makefile index a85e5c0..2a171ed 100644 --- a/Makefile +++ b/Makefile @@ -8,7 +8,7 @@ BUILD_META=-build$(shell date +%Y%m%d) ORG ?= rancher PKG ?= github.com/opencontainers/runc SRC ?= github.com/opencontainers/runc -TAG ?= v1.0.0-rc93$(BUILD_META) +TAG ?= v1.0.0-rc94$(BUILD_META) ifneq ($(DRONE_TAG),) TAG := $(DRONE_TAG)