1 Commits

Author SHA1 Message Date
9511f003d1 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
2025-12-04 14:09:13 +13:00

View File

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