From a994d6bc04e907b6849cb996cb80d1bec2979b4d Mon Sep 17 00:00:00 2001 From: karanssj4 Date: Fri, 18 Sep 2020 15:20:18 +0530 Subject: [PATCH] Update Dockerfile (#1320) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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