Fix folders I think
This commit is contained in:
+3
-2
@@ -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
|
||||||
|
|||||||
Reference in New Issue
Block a user