mirror of
https://github.com/penpot/penpot.git
synced 2025-05-09 21:06:37 +02:00
🎨 Add variable for Clojure version
Signed-off-by: mathieu.brunot <mb.mathieu.brunot@gmail.com>
This commit is contained in:
parent
c4356bf9ce
commit
00b56eaf6c
1 changed files with 6 additions and 5 deletions
|
@ -2,14 +2,15 @@ FROM openjdk:8-jre
|
||||||
|
|
||||||
LABEL maintainer="Monogramm Maintainers <opensource at monogramm dot io>"
|
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
|
LC_ALL=C.UTF-8
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
wget https://download.clojure.org/install/linux-install-1.10.0.442.sh; \
|
wget "https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh"; \
|
||||||
chmod +x linux-install-1.10.0.442.sh; \
|
chmod +x "linux-install-$CLOJURE_VERSION.sh"; \
|
||||||
./linux-install-1.10.0.442.sh; \
|
"./linux-install-$CLOJURE_VERSION.sh"; \
|
||||||
rm -rf linux-install-1.10.0.442.sh
|
rm -rf "linux-install-$CLOJURE_VERSION.sh"
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
apt-get update -yq && \
|
apt-get update -yq && \
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue