From 2f48f8a6c254637e10f8d3fb9943928c1b08c13e Mon Sep 17 00:00:00 2001 From: Nycholas de Oliveira e Oliveira Date: Thu, 20 Jun 2024 15:44:41 -0300 Subject: [PATCH] Fix gunicorn app --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 594833a..78eb508 100644 --- a/Dockerfile +++ b/Dockerfile @@ -58,4 +58,4 @@ RUN chown flask_user:flask_user -R /app USER flask_user EXPOSE 5000 -CMD gunicorn src.lms:app --bind 0.0.0.0:5000 +CMD gunicorn src.lms.app:app --bind 0.0.0.0:5000