Skip to content

Commit

Permalink
Merge pull request #184 from vmware-tanzu/bump_golang_and_slim
Browse files Browse the repository at this point in the history
Upgrade golang patch release to 1.15.3 and debian 10.5-slim -> 10.6-slim
  • Loading branch information
cfryanr authored Nov 3, 2020
2 parents c451604 + 5a0e7fd commit 036845d
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright 2020 the Pinniped contributors. All Rights Reserved.
# SPDX-License-Identifier: Apache-2.0

FROM golang:1.15.2 as build-env
FROM golang:1.15.3 as build-env

WORKDIR /work
# Get dependencies first so they can be cached as a layer
Expand All @@ -24,7 +24,7 @@ RUN mkdir out \
&& CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -o out ./cmd/local-user-authenticator/...

# Use a runtime image based on Debian slim
FROM debian:10.5-slim
FROM debian:10.6-slim

# Copy the binaries from the build-env stage
COPY --from=build-env /work/out/pinniped-concierge /usr/local/bin/pinniped-concierge
Expand Down
2 changes: 1 addition & 1 deletion hack/lib/tilt/Tiltfile
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ k8s_yaml(local([
'--data-value namespace=concierge ' +
'--data-value image_repo=image/concierge ' +
'--data-value image_tag=tilt-dev ' +
'--data-value kube_cert_agent_image=debian:10.5-slim ' +
'--data-value kube_cert_agent_image=debian:10.6-slim ' +
'--data-value discovery_url=$(TERM=dumb kubectl cluster-info | awk \'/Kubernetes master/ {print $NF}\') ' +
'--data-value-yaml replicas=1 ' +
'--data-value-yaml "custom_labels={myConciergeCustomLabelName: myConciergeCustomLabelValue}"'
Expand Down
2 changes: 1 addition & 1 deletion hack/lib/tilt/concierge.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

# Use a runtime image based on Debian slim
FROM debian:10.5-slim
FROM debian:10.6-slim

# Copy the binary which was built outside the container.
COPY build/pinniped-concierge /usr/local/bin/pinniped-concierge
Expand Down
2 changes: 1 addition & 1 deletion hack/lib/tilt/local-user-authenticator.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

# Use a runtime image based on Debian slim
FROM debian:10.5-slim
FROM debian:10.6-slim

# Copy the binary which was built outside the container.
COPY build/local-user-authenticator /usr/local/bin/local-user-authenticator
Expand Down
2 changes: 1 addition & 1 deletion hack/lib/tilt/supervisor.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# SPDX-License-Identifier: Apache-2.0

# Use a runtime image based on Debian slim
FROM debian:10.5-slim
FROM debian:10.6-slim

# Copy the binary which was built outside the container.
COPY build/pinniped-supervisor /usr/local/bin/pinniped-supervisor
Expand Down

0 comments on commit 036845d

Please sign in to comment.