Fix Gunicorn config in Docker

This commit is contained in:
2024-08-18 21:57:12 +01:00
parent 30d5e40520
commit e9426644a2
2 changed files with 2 additions and 2 deletions

View File

@@ -31,4 +31,4 @@ COPY --from=builder /runtime /usr/local
COPY . /app
WORKDIR /app
EXPOSE 8000/tcp
CMD ["/usr/local/bin/gunicorn", "simple_webfinger.app:create_app()"]
CMD ["/usr/local/bin/gunicorn", "simple_webfinger.app:create_app()", "-b", "0.0.0.0:8000"]