This commit is contained in:
2025-06-28 18:12:09 +01:00
parent d48dd04af9
commit e66f7e0588
3 changed files with 11 additions and 4 deletions

View File

@@ -18,8 +18,5 @@ COPY static static
# Expose the port the app runs on
EXPOSE 5000
# Set environment variables
ENV FLASK_APP=app.py
# run the application
ENTRYPOINT [ "gunicorn", "-b", ":5000", "--access-logfile", "-", "--error-logfile", "-", "src.wsgi:app" ]