2
0
mirror of https://github.com/inventree/InvenTree.git synced 2025-06-14 02:55:41 +00:00
Files
InvenTree/docker/install_build_packages.sh
Oliver 8522ff243e Fix for dockerfile
- Ensure that core DB packages are kept around
- We can purge the dev packages after building python modules
2024-02-08 01:58:21 +00:00

12 lines
440 B
Bash

#!/bin/ash
# Install system packages required for building InvenTree python libraries
# Note that for postgreslql, we use the 13 version, which matches the version used in the InvenTree docker image
apk add gcc g++ musl-dev openssl-dev libffi-dev cargo python3-dev openldap-dev \
jpeg-dev openjpeg-dev libwebp-dev zlib-dev \
sqlite-dev \
mariadb-connector-c-dev mariadb-dev \
postgresql13-dev postgresql13-client \
$@