Skip to content

Commit

Permalink
Merge pull request #30 from gardener/update/base-image
Browse files Browse the repository at this point in the history
Update base/build images
  • Loading branch information
briantopping authored May 9, 2022
2 parents 8880383 + 7cd22e9 commit d89d097
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .ci/pipeline_definitions
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,9 @@ machine-controller-manager-provider-vsphere:
steps_template: &steps_anchor
steps:
check:
image: 'golang:1.17.5'
image: 'golang:1.17.9'
build:
image: 'golang:1.17.5'
image: 'golang:1.17.9'
output_dir: 'binary'
test:
image: 'eu.gcr.io/gardener-project/gardener/testmachinery/base-step:stable'
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
############# builder #############
FROM eu.gcr.io/gardener-project/3rd/golang:1.17.5 AS builder
FROM golang:1.17.9 AS builder

WORKDIR /go/src/github.com/gardener/machine-controller-manager-provider-vsphere
COPY . .

RUN .ci/build

############# base #############
FROM eu.gcr.io/gardener-project/3rd/alpine:3.15.0 AS base
FROM alpine:3.15.4 AS base

RUN apk add --update bash curl tzdata
WORKDIR /
Expand Down

0 comments on commit d89d097

Please sign in to comment.