Skip to content

Commit

Permalink
tools: use older alpine base image while building to avoid execution …
Browse files Browse the repository at this point in the history
  • Loading branch information
iwilltry42 committed Sep 30, 2021
1 parent 2a2bee0 commit d21882a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tools/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.17-alpine as builder
FROM golang:1.17-alpine3.13 as builder
ARG GIT_TAG
WORKDIR /app
COPY . .
Expand All @@ -8,7 +8,7 @@ ENV GO111MODULE=on
ENV CGO_ENABLED=0
RUN make build

FROM alpine:3.14
FROM alpine:3.13
RUN apk update && apk add bash
WORKDIR /app
COPY --from=builder /app/bin/k3d-tools .
Expand Down

0 comments on commit d21882a

Please sign in to comment.