From 2b4586e022e75d23be1a2f1776ec12a2aec0bf6d Mon Sep 17 00:00:00 2001 From: janezj Date: Sun, 27 Feb 2022 21:20:59 +0100 Subject: [PATCH] Add git to the image Some projects dependencies are loaded using git --- Dockerfile-shadow-cljs-alpine | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile-shadow-cljs-alpine b/Dockerfile-shadow-cljs-alpine index 2d5a732..9c713e3 100644 --- a/Dockerfile-shadow-cljs-alpine +++ b/Dockerfile-shadow-cljs-alpine @@ -4,6 +4,6 @@ LABEL org.opencontainers.image.authors="Andrew Phillips " WORKDIR /tmp ENV CLOJURE_VER=1.10.3.933 -RUN apk add --update --no-cache openjdk11 openssl bash curl \ +RUN apk add --update --no-cache openjdk11 openssl bash curl git \ && npm install -g shadow-cljs \ && curl -s https://download.clojure.org/install/linux-install-$CLOJURE_VER.sh | bash