Shouvik599 commited on
Commit
8335de0
·
1 Parent(s): 898a004

updated DockerFile

Browse files
Files changed (1) hide show
  1. Dockerfile +3 -1
Dockerfile CHANGED
@@ -27,7 +27,9 @@ RUN pip install uv && uv sync --frozen-lockfile --no-dev
27
  # Copy backend code
28
  COPY backend/ .
29
  COPY models/ ./models/
30
- COPY uploads/ ./uploads/
 
 
31
 
32
  # Copy frontend build
33
  COPY --from=frontend-build /app/frontend/dist ./static
 
27
  # Copy backend code
28
  COPY backend/ .
29
  COPY models/ ./models/
30
+
31
+ # Create uploads directory if it doesn't exist
32
+ RUN mkdir -p ./uploads
33
 
34
  # Copy frontend build
35
  COPY --from=frontend-build /app/frontend/dist ./static