mirror of
https://github.com/frappe/frappe_docker.git
synced 2026-06-22 15:55:09 +00:00
fix: add weasyprint dependencies (#1047)
* fix: add weasyprint dependencies fixes #1045 * ci: fix trigger to test pr * fix: add weasyprint deps to bench
This commit is contained in:
parent
a270514eb1
commit
455a523205
5 changed files with 18 additions and 9 deletions
4
.github/workflows/build_develop.yml
vendored
4
.github/workflows/build_develop.yml
vendored
|
|
@ -5,9 +5,7 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- images/nginx/**
|
- images/production/**
|
||||||
- images/socketio/**
|
|
||||||
- images/worker/**
|
|
||||||
- overrides/**
|
- overrides/**
|
||||||
- tests/**
|
- tests/**
|
||||||
- compose.yaml
|
- compose.yaml
|
||||||
|
|
|
||||||
8
.github/workflows/build_stable.yml
vendored
8
.github/workflows/build_stable.yml
vendored
|
|
@ -5,9 +5,7 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- images/nginx/**
|
- images/production/**
|
||||||
- images/socketio/**
|
|
||||||
- images/worker/**
|
|
||||||
- overrides/**
|
- overrides/**
|
||||||
- tests/**
|
- tests/**
|
||||||
- compose.yaml
|
- compose.yaml
|
||||||
|
|
@ -19,9 +17,7 @@ on:
|
||||||
branches:
|
branches:
|
||||||
- main
|
- main
|
||||||
paths:
|
paths:
|
||||||
- images/nginx/**
|
- images/production/**
|
||||||
- images/socketio/**
|
|
||||||
- images/worker/**
|
|
||||||
- overrides/**
|
- overrides/**
|
||||||
- tests/**
|
- tests/**
|
||||||
- compose.yaml
|
- compose.yaml
|
||||||
|
|
|
||||||
|
|
@ -18,6 +18,11 @@ RUN apt-get update \
|
||||||
fonts-cantarell \
|
fonts-cantarell \
|
||||||
xfonts-75dpi \
|
xfonts-75dpi \
|
||||||
xfonts-base \
|
xfonts-base \
|
||||||
|
# weasyprint dependencies
|
||||||
|
libpango-1.0-0 \
|
||||||
|
libharfbuzz0b \
|
||||||
|
libpangoft2-1.0-0 \
|
||||||
|
libpangocairo-1.0-0 \
|
||||||
# to work inside the container
|
# to work inside the container
|
||||||
locales \
|
locales \
|
||||||
build-essential \
|
build-essential \
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,11 @@ RUN useradd -ms /bin/bash frappe \
|
||||||
vim \
|
vim \
|
||||||
nginx \
|
nginx \
|
||||||
gettext-base \
|
gettext-base \
|
||||||
|
# weasyprint dependencies
|
||||||
|
libpango-1.0-0 \
|
||||||
|
libharfbuzz0b \
|
||||||
|
libpangoft2-1.0-0 \
|
||||||
|
libpangocairo-1.0-0 \
|
||||||
# MariaDB
|
# MariaDB
|
||||||
mariadb-client \
|
mariadb-client \
|
||||||
# Postgres
|
# Postgres
|
||||||
|
|
|
||||||
|
|
@ -14,6 +14,11 @@ RUN useradd -ms /bin/bash frappe \
|
||||||
vim \
|
vim \
|
||||||
nginx \
|
nginx \
|
||||||
gettext-base \
|
gettext-base \
|
||||||
|
# weasyprint dependencies
|
||||||
|
libpango-1.0-0 \
|
||||||
|
libharfbuzz0b \
|
||||||
|
libpangoft2-1.0-0 \
|
||||||
|
libpangocairo-1.0-0 \
|
||||||
# MariaDB
|
# MariaDB
|
||||||
mariadb-client \
|
mariadb-client \
|
||||||
# Postgres
|
# Postgres
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue