diff --git a/Dockerfile b/Dockerfile index 353d9884..87b5f662 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM alpine:3.9 +FROM alpine:3.9 as builder RUN apk add --no-cache curl COPY ./build/VERSION VERSION @@ -6,5 +6,5 @@ RUN version=$(cat VERSION) && curl -L "https://github.com/kubernetes/kompose/rel FROM alpine:3.9 -COPY --from=0 /kompose /usr/bin/kompose +COPY --from=builder /kompose /usr/bin/kompose RUN chmod +x /usr/bin/kompose