From bc26cd1a48de910edae18570cc93d24d598dfd5a Mon Sep 17 00:00:00 2001 From: Andrew Williams Date: Sun, 23 Feb 2025 22:02:30 +0000 Subject: [PATCH] Access log to stdout for the container version --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8f91be7..468469f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -31,4 +31,4 @@ COPY --from=builder /runtime /usr/local COPY . /app WORKDIR /app EXPOSE 8000/tcp -CMD ["/usr/local/bin/gunicorn", "ohayodash.app:app", "-b", "0.0.0.0:80"] \ No newline at end of file +CMD ["/usr/local/bin/gunicorn", "ohayodash.app:app", "-b", "0.0.0.0:80", "--access-logfile", "-"] \ No newline at end of file