feat: speedup startup by moving collectstatic to the Dockerfile

This commit is contained in:
Herculino Trotta
2025-12-19 22:13:05 -03:00
parent 0545fb7651
commit 3dce9e1c55
2 changed files with 1 additions and 1 deletions

View File

@@ -74,5 +74,6 @@ RUN chown -R app:app /usr/src/app && \
USER app
RUN python manage.py compilemessages --settings "WYGIWYH.settings"
RUN python manage.py collectstatic --noinput
CMD ["/start-single"]