From 90076842b99d895baa5730d85a3f1dddfbde135a Mon Sep 17 00:00:00 2001 From: Cai Cooper Date: Tue, 25 Jun 2019 13:11:53 +0000 Subject: [PATCH] Swapped out centos for alpine Signed-off-by: Cai Cooper --- Dockerfile | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 5192fecde4..5067f8717d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,9 @@ -FROM centos:7 +FROM alpine:3.10 -RUN yum install -y git +RUN apk --no-cache --update add \ + git \ + bash ENTRYPOINT ["jx", "version"] -COPY ./build/linux/jx /usr/bin/jx \ No newline at end of file +COPY ./build/linux/jx /usr/bin/jx