"ENV key=value" should be used instead of legacy "ENV key value" format

This commit is contained in:
Clóvis Fabrício Costa 2025-06-18 20:05:37 -03:00
parent 2eb8cadfc6
commit 7f5c7586f0
1 changed files with 1 additions and 1 deletions

View File

@ -17,5 +17,5 @@ COPY migrations ./migrations
RUN chmod +x start.sh RUN chmod +x start.sh
ENV FLASK_APP=rifaserver.app ENV FLASK_APP=rifaserver.app
ENV GUNICORN_BIND=:5000 ENV GUNICORN_BIND=:5000
ENV PYTHONUNBUFFERED 1 ENV PYTHONUNBUFFERED=1
CMD ["./start.sh"] CMD ["./start.sh"]