Merge pull request #3283 from Shell32-Natsu/docker

Add git and openssh in docker image
This commit is contained in:
Jeff Regan
2020-11-26 08:18:44 -08:00
committed by GitHub

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"]