Skip to content

Commit

Permalink
Change golang and alpine image registry in Dockerfile
Browse files Browse the repository at this point in the history
Signed-off-by: Shreyas Rao <[email protected]>
  • Loading branch information
shreyas-s-rao committed Nov 23, 2020
1 parent 3203af8 commit 92efe07
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build the manager binary
FROM golang:1.13.9 as builder
FROM eu.gcr.io/gardener-project/3rd/library-1.docker.io/library/golang:1.13.9 as builder
WORKDIR /go/src/github.com/gardener/etcd-druid
COPY . .

Expand All @@ -12,7 +12,7 @@ RUN .ci/build

# Use distroless as minimal base image to package the manager binary
# Refer to https://github.com/GoogleContainerTools/distroless for more details
FROM alpine:3.10.3 AS druid
FROM eu.gcr.io/gardener-project/3rd/alpine:3.10.3 AS druid
RUN apk add --update bash curl
WORKDIR /
COPY --from=builder /go/src/github.com/gardener/etcd-druid/bin/linux-amd64/etcd-druid bin/.
Expand Down

0 comments on commit 92efe07

Please sign in to comment.