Skip to content

Commit

Permalink
Oops, add openssl to final image, not build image
Browse files Browse the repository at this point in the history
  • Loading branch information
marcwickenden committed Nov 29, 2018
1 parent c5c10bf commit f417ffd
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,7 @@ FROM golang:alpine AS build

RUN apk add --no-cache \
git \
curl \
openssl
curl

RUN mkdir -p /out/usr/local/bin

Expand All @@ -21,6 +20,9 @@ RUN curl -sL https://storage.googleapis.com/kubernetes-release/release/$(curl -s
FROM google/cloud-sdk:alpine
LABEL maintainer="Marc Wickenden <[email protected]>"

RUN apk add --no-cache \
openssl

RUN addgroup -S app && adduser -S app -G app

COPY --from=build /out /
Expand Down

0 comments on commit f417ffd

Please sign in to comment.