mirror of
https://github.com/penpot/penpot.git
synced 2025-05-11 21:06:40 +02:00
🐛 Add missing system deps to the default docker backend image.
This commit is contained in:
parent
782e060448
commit
ae4b743ea4
1 changed files with 12 additions and 1 deletions
|
@ -7,7 +7,18 @@ WORKDIR /root
|
||||||
|
|
||||||
RUN set -ex; \
|
RUN set -ex; \
|
||||||
apt-get -qq update; \
|
apt-get -qq update; \
|
||||||
apt-get -qqy --no-install-recommends install curl tzdata locales ca-certificates imagemagick webp fontconfig; \
|
apt-get -qqy --no-install-recommends install \
|
||||||
|
curl \
|
||||||
|
tzdata \
|
||||||
|
locales \
|
||||||
|
ca-certificates \
|
||||||
|
imagemagick \
|
||||||
|
webp \
|
||||||
|
fontconfig \
|
||||||
|
woff-tools \
|
||||||
|
woff2 \
|
||||||
|
fontforge \
|
||||||
|
; \
|
||||||
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen; \
|
echo "en_US.UTF-8 UTF-8" >> /etc/locale.gen; \
|
||||||
locale-gen; \
|
locale-gen; \
|
||||||
rm -rf /var/lib/apt/lists/*;
|
rm -rf /var/lib/apt/lists/*;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue