Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

updated dockerfile base image and using [email protected] #71

Merged
merged 1 commit into from
Apr 26, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,15 @@
# SPDX-License-Identifier: Apache-2.0

############# builder #############
FROM eu.gcr.io/gardener-project/3rd/golang:1.15.5 AS builder
FROM eu.gcr.io/gardener-project/3rd/golang:1.16.2 AS builder

WORKDIR /build
COPY . .

RUN make release

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

############# cert-controller-manager #############
FROM base AS cert-controller-manager
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/gardener/cert-management

go 1.15
go 1.16

require (
github.com/ahmetb/gen-crd-api-reference-docs v0.2.0
Expand Down
Loading