Fix folders I think
Build, push image, and notify Watchtower / build-image (push) Successful in 1m11s
Build, push image, and notify Watchtower / notify (push) Failing after 2m19s

This commit is contained in:
2026-07-16 17:30:54 +02:00
parent dc6c339b74
commit 7a0ad29722
+3 -2
View File
@@ -5,11 +5,12 @@ FROM python:3.11-slim
WORKDIR /cloud WORKDIR /cloud
# Copy the requirements file and install dependencies # Copy the requirements file and install dependencies
COPY requirements.txt . COPY cloud/requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt RUN pip install --no-cache-dir -r requirements.txt
# Copy the rest of the application code # 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 # Ensure the photo storage directory exists so the app doesn't crash on startup
RUN mkdir -p storage/dishPhotos RUN mkdir -p storage/dishPhotos