fix: Update base image and adjust ara installation dependencies 🐛
All checks were successful
CI / build (push) Successful in 33s
CI / release (release) Successful in 8m36s

This commit is contained in:
2025-12-04 14:09:13 +13:00
parent 66a7f6d86b
commit 9511f003d1

View File

@@ -1,4 +1,4 @@
FROM almalinux:9.5
FROM almalinux:9
ARG DEV_DEPENDENCIES="gcc python3-devel postgresql-devel mariadb-devel"
RUN dnf install -y epel-release \
@@ -15,7 +15,7 @@ RUN dnf install -y ${DEV_DEPENDENCIES}
# Install ara from PyPI with API server extras for dependencies (django & django-rest-framework)
# including database backend libraries and gunicorn
RUN python3 -m pip install "ara[server,postgresql,mysql]" gunicorn
RUN python3 -m pip install "ara[server,mysql]" gunicorn
# Remove development dependencies and clean up
RUN dnf remove -y ${DEV_DEPENDENCIES} \