From 7a0ad297229e4dfd144734c9fa85d3c13829b30a Mon Sep 17 00:00:00 2001 From: Matthias Guillitte Date: Thu, 16 Jul 2026 17:30:54 +0200 Subject: [PATCH] Fix folders I think --- cloud/Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/cloud/Dockerfile b/cloud/Dockerfile index 008579b..a6cb6e3 100644 --- a/cloud/Dockerfile +++ b/cloud/Dockerfile @@ -5,11 +5,12 @@ FROM python:3.11-slim WORKDIR /cloud # Copy the requirements file and install dependencies -COPY requirements.txt . +COPY cloud/requirements.txt . RUN pip install --no-cache-dir -r requirements.txt # Copy the rest of the application code -COPY . . +COPY cloud/ . +COPY shared/ .. # Ensure the photo storage directory exists so the app doesn't crash on startup RUN mkdir -p storage/dishPhotos