From 8c289622e1465b936bacd4d4bc6ad18154482f66 Mon Sep 17 00:00:00 2001 From: Laurent Date: Thu, 1 Jan 2026 15:40:46 +0100 Subject: [PATCH] Fix Dockerfile --- api-customer/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/api-customer/Dockerfile b/api-customer/Dockerfile index 19a98862..0548cba5 100644 --- a/api-customer/Dockerfile +++ b/api-customer/Dockerfile @@ -3,10 +3,10 @@ FROM python:3.12-slim WORKDIR /app COPY requirements.txt . +COPY . . RUN pip install --no-cache-dir -r requirements.txt -COPY . . ENV FLASK_APP=app.py ENV FLASK_RUN_HOST=0.0.0.0 ENV FLASK_RUN_PORT=5000