Add git and openssh in docker image

This commit is contained in:
Donny Xia
2020-11-25 15:02:47 -08:00
parent 4af4483e12
commit c3a8b6f359

View File

@@ -13,6 +13,8 @@ RUN CGO_ENABLED=0 GO111MODULE=on go build \
# only copy binary
FROM alpine
# install dependencies
RUN apk add git openssh
COPY --from=builder /build/kustomize /app/
WORKDIR /app
ENTRYPOINT ["./kustomize"]