mirror of
https://github.com/inventree/InvenTree.git
synced 2025-06-12 10:05:39 +00:00
* Update docker image
- Move from alpine 3.19 to alpine 3.21
- Move from postgres13_client to postgres17_client
* Update docker-compose file
- Move from postgres:13 to postgres:16
- Move from redis:7.0 to redis:7-alpine
* Update docs
* Update docker docs
* Separate Dockerfile for devcontainer
- Debian based (python3.11-bookworm)
- Install essential system packages
* Instal postgres client
* Further devcontainer updates
- Bump postgresql image from 13 to 15
- Store psql data in the dev/psql directory
- Install required frontend packages
* Use --host mode for frontend server
* Tweak devcontainer docs
* Bump pre commit config file
* Revert "Bump pre commit config file"
This reverts commit bbfd875ac8
.
13 lines
510 B
Bash
13 lines
510 B
Bash
#!/bin/ash
|
|
|
|
# Install system packages required for building InvenTree python libraries
|
|
# Note that for postgreslql, we use the version 13, 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 \
|
|
libstdc++ build-base linux-headers py3-grpcio \
|
|
jpeg-dev openjpeg-dev libwebp-dev zlib-dev \
|
|
sqlite sqlite-dev \
|
|
mariadb-connector-c-dev mariadb-client mariadb-dev \
|
|
postgresql17-dev postgresql-libs \
|
|
$@
|