0
Fork 0
mirror of https://github.com/penpot/penpot.git synced 2025-03-18 10:41:29 -05:00

🎨 Add variable for Clojure version

Signed-off-by: mathieu.brunot <mb.mathieu.brunot@gmail.com>
This commit is contained in:
mathieu.brunot 2019-06-11 18:18:33 +02:00
parent c4356bf9ce
commit 00b56eaf6c
No known key found for this signature in database
GPG key ID: 81584BEAF692D7E0

View file

@ -2,14 +2,15 @@ FROM openjdk:8-jre
LABEL maintainer="Monogramm Maintainers <opensource at monogramm dot io>"
ENV LANG=en_US.UTF-8 \
ENV CLOJURE_VERSION=1.10.0.442 \
LANG=en_US.UTF-8 \
LC_ALL=C.UTF-8
RUN set -ex; \
wget https://download.clojure.org/install/linux-install-1.10.0.442.sh; \
chmod +x linux-install-1.10.0.442.sh; \
./linux-install-1.10.0.442.sh; \
rm -rf linux-install-1.10.0.442.sh
wget "https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh"; \
chmod +x "linux-install-$CLOJURE_VERSION.sh"; \
"./linux-install-$CLOJURE_VERSION.sh"; \
rm -rf "linux-install-$CLOJURE_VERSION.sh"
RUN set -ex; \
apt-get update -yq && \