4 Commits
v1.0.8 ... main

Author SHA1 Message Date
300ef37e06 fix: Revert to dnf from microdnf for package management consistency
All checks were successful
CI / build (push) Successful in 10s
CI / release (release) Successful in 11m9s
2025-12-04 15:10:14 +13:00
3cc0cd2955 fix: Escape percentage signs in CMD for proper log formatting
Some checks failed
CI / build (push) Successful in 11s
CI / release (release) Failing after 52s
2025-12-04 15:07:35 +13:00
9dec26252a fix: Replace dnf with microdnf for package management consistency 🐛
Some checks failed
CI / build (push) Successful in 10s
CI / release (release) Failing after 46s
2025-12-04 15:02:37 +13:00
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

View File

@@ -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
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