2 Commits

Author SHA1 Message Date
acfae94e00 fix: Update base image to almalinux:9-minimal for improved stability
Some checks failed
CI / build (push) Successful in 10s
CI / release (release) Failing after 31s
2025-12-04 14:41:59 +13:00
7172bbf4e0 fix: Escape quotes in CMD for proper execution 🐛
All checks were successful
CI / build (push) Successful in 14s
CI / release (release) Successful in 11m31s
2025-12-04 14:41:12 +13:00

View File

@@ -1,4 +1,4 @@
FROM almalinux:9 FROM almalinux:9-minimal
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 \
@@ -25,5 +25,5 @@ RUN dnf remove -y ${DEV_DEPENDENCIES} \
# Set up the container to execute SQL migrations and run the API server with gunicorn # Set up the container to execute SQL migrations and run the API server with gunicorn
ENV ARA_BASE_DIR=/opt/ara ENV ARA_BASE_DIR=/opt/ara
CMD ["/bin/bash", "-c", "/usr/local/bin/ara-manage migrate && python3 -m gunicorn --workers=4 --access-logfile - --bind [::]:8000 --access-logformat '%({x-forwarded-for}i)s %l %u %t \"%r\" %s %b \"%f\" \"%a\"' ara.server.wsgi"] CMD ["/bin/bash", "-c", "/usr/local/bin/ara-manage migrate && python3 -m gunicorn --workers=4 --access-logfile - --bind [::]:8000 --access-logformat '%({x-forwarded-for}i)s %l %u %t \\\"%r\\\" %s %b \\\"%f\\\" \\\"%a\\\"' ara.server.wsgi"]
EXPOSE 8000 EXPOSE 8000