mirror of
https://github.com/penpot/penpot.git
synced 2025-01-24 07:29:08 -05:00
➕ Add curl
Signed-off-by: mathieu.brunot <mb.mathieu.brunot@gmail.com>
This commit is contained in:
parent
00b56eaf6c
commit
a7ed60ee12
1 changed files with 8 additions and 7 deletions
|
@ -6,19 +6,20 @@ ENV CLOJURE_VERSION=1.10.0.442 \
|
||||||
LANG=en_US.UTF-8 \
|
LANG=en_US.UTF-8 \
|
||||||
LC_ALL=C.UTF-8
|
LC_ALL=C.UTF-8
|
||||||
|
|
||||||
|
RUN set -ex; \
|
||||||
|
apt-get update -yq && \
|
||||||
|
apt-get install -yq \
|
||||||
|
curl \
|
||||||
|
git \
|
||||||
|
imagemagick \
|
||||||
|
webp
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
wget "https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh"; \
|
wget "https://download.clojure.org/install/linux-install-$CLOJURE_VERSION.sh"; \
|
||||||
chmod +x "linux-install-$CLOJURE_VERSION.sh"; \
|
chmod +x "linux-install-$CLOJURE_VERSION.sh"; \
|
||||||
"./linux-install-$CLOJURE_VERSION.sh"; \
|
"./linux-install-$CLOJURE_VERSION.sh"; \
|
||||||
rm -rf "linux-install-$CLOJURE_VERSION.sh"
|
rm -rf "linux-install-$CLOJURE_VERSION.sh"
|
||||||
|
|
||||||
RUN set -ex; \
|
|
||||||
apt-get update -yq && \
|
|
||||||
apt-get install -yq \
|
|
||||||
git \
|
|
||||||
imagemagick \
|
|
||||||
webp
|
|
||||||
|
|
||||||
COPY ./entrypoint.sh /entrypoint.sh
|
COPY ./entrypoint.sh /entrypoint.sh
|
||||||
COPY ./dist /srv/uxbox
|
COPY ./dist /srv/uxbox
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue