2023-12-04 20:05:48 +00:00
|
|
|
#!/bin/ash
|
|
|
|
|
|
|
|
# Install system packages required for building InvenTree python libraries
|
2024-02-05 07:25:14 +00:00
|
|
|
# Note that for postgreslql, we use the 13 version, which matches the version used in the InvenTree docker image
|
2023-12-04 20:05:48 +00:00
|
|
|
|
|
|
|
apk add gcc g++ musl-dev openssl-dev libffi-dev cargo python3-dev openldap-dev \
|
|
|
|
jpeg-dev openjpeg-dev libwebp-dev zlib-dev \
|
2024-02-05 07:25:14 +00:00
|
|
|
sqlite sqlite-dev \
|
|
|
|
mariadb-connector-c-dev mariadb-client mariadb-dev \
|
|
|
|
postgresql13-dev postgresql-libs postgresql13-client \
|
2023-12-04 20:05:48 +00:00
|
|
|
$@
|