From 7f5c7586f096f61f62dda188b19f0abb9b0c561a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=B3vis=20Fabr=C3=ADcio=20Costa?= Date: Wed, 18 Jun 2025 20:05:37 -0300 Subject: [PATCH] "ENV key=value" should be used instead of legacy "ENV key value" format --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index 6e9a842..d9c81d9 100644 --- a/Containerfile +++ b/Containerfile @@ -17,5 +17,5 @@ COPY migrations ./migrations RUN chmod +x start.sh ENV FLASK_APP=rifaserver.app ENV GUNICORN_BIND=:5000 -ENV PYTHONUNBUFFERED 1 +ENV PYTHONUNBUFFERED=1 CMD ["./start.sh"]