From 520416b7724b84665d68a72f6bfdca3df9724909 Mon Sep 17 00:00:00 2001 From: vvzvlad Date: Thu, 5 Sep 2024 03:20:57 +0300 Subject: [PATCH] fix warning --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index df82d46..ee7999c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,6 +4,8 @@ FROM amd64/python:3.9-buster as project_env # Set the working directory in the container WORKDIR /app +ENV FLASK_ENV=production + # Install dependencies COPY requirements.txt requirements.txt RUN pip install --upgrade pip setuptools \