2
0
mirror of https://github.com/frappe/frappe_docker.git synced 2025-01-24 07:38:33 +00:00

fix: Add missing packages for frappe:develop

This commit is contained in:
dt 2021-10-28 12:43:33 +03:00
parent 2da9c02d58
commit 63da01c702
No known key found for this signature in database
GPG Key ID: F16DDC20A6782103

View File

@ -40,6 +40,16 @@ RUN apt-get update -y && apt-get install \
# For arm64 python wheel builds
gcc \
g++ -y \
# Install additional requirements for develop branch
&& if [ "${GIT_BRANCH}" = 'develop' ]; then \
apt-get install -y \
libcairo2 \
python3-cffi \
python3-brotli \
libpango-1.0-0 \
libpangoft2-1.0-0 \
libpangocairo-1.0-0; \
fi \
# Detect arch, download and install wkhtmltox
&& if [ `uname -m` = 'aarch64' ]; then export ARCH=arm64; fi \
&& if [ `uname -m` = 'x86_64' ]; then export ARCH=amd64; fi \