From 5ce258b1ec107e484657a6916c1ebcac061052fd Mon Sep 17 00:00:00 2001 From: annous246 Date: Fri, 8 Aug 2025 03:09:47 +0100 Subject: [PATCH] Trigger redeploy --- DockerFile => Dockerfiles | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) rename DockerFile => Dockerfiles (94%) diff --git a/DockerFile b/Dockerfiles similarity index 94% rename from DockerFile rename to Dockerfiles index 0bf1c44..b3f7498 100644 --- a/DockerFile +++ b/Dockerfiles @@ -1,14 +1,14 @@ -FROM python:3.10-slim - -WORKDIR /app - -COPY requirements.txt . -RUN pip install --no-cache-dir -r requirements.txt - -COPY . . - -ENV FLASK_APP=app.py -ENV FLASK_RUN_HOST=0.0.0.0 -EXPOSE 5000 - +FROM python:3.10-slim + +WORKDIR /app + +COPY requirements.txt . +RUN pip install --no-cache-dir -r requirements.txt + +COPY . . + +ENV FLASK_APP=app.py +ENV FLASK_RUN_HOST=0.0.0.0 +EXPOSE 5000 + CMD ["flask", "run"] \ No newline at end of file