mirror of
https://github.com/frappe/frappe_docker.git
synced 2024-12-24 11:05:29 +00:00
Merge pull request #537 from dtwm/develop
fix: Add missing packages for frappe:develop
This commit is contained in:
commit
33ec8cafc3
@ -40,6 +40,16 @@ RUN apt-get update -y && apt-get install \
|
|||||||
# For arm64 python wheel builds
|
# For arm64 python wheel builds
|
||||||
gcc \
|
gcc \
|
||||||
g++ -y \
|
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
|
# Detect arch, download and install wkhtmltox
|
||||||
&& if [ `uname -m` = 'aarch64' ]; then export ARCH=arm64; fi \
|
&& if [ `uname -m` = 'aarch64' ]; then export ARCH=arm64; fi \
|
||||||
&& if [ `uname -m` = 'x86_64' ]; then export ARCH=amd64; fi \
|
&& if [ `uname -m` = 'x86_64' ]; then export ARCH=amd64; fi \
|
||||||
|
Loading…
Reference in New Issue
Block a user