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