From ba45e16b43f868100727ae69eabaf5f41168e053 Mon Sep 17 00:00:00 2001 From: Jeffrey Vandenborne Date: Fri, 15 Mar 2024 11:49:29 +0100 Subject: [PATCH] Add git to container (#221) --- Dockerfile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index d9e0634..df8bc83 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,3 +1,7 @@ FROM alpine + +RUN set -xe \ + && apk add --no-cache git + COPY spacectl /usr/local/bin/spacectl -ENTRYPOINT ["/usr/local/bin/spacectl"] \ No newline at end of file +ENTRYPOINT ["/usr/local/bin/spacectl"]