Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +2 -1
Dockerfile
CHANGED
@@ -16,11 +16,12 @@ WORKDIR /app
|
|
16 |
|
17 |
# Copy application files
|
18 |
COPY requirements.txt .
|
19 |
-
COPY . .
|
20 |
|
21 |
# Install Python dependencies
|
22 |
RUN pip3 install --no-cache-dir -r requirements.txt
|
23 |
|
|
|
|
|
24 |
# Create directories for file handling
|
25 |
RUN mkdir -p uploads outputs
|
26 |
|
|
|
16 |
|
17 |
# Copy application files
|
18 |
COPY requirements.txt .
|
|
|
19 |
|
20 |
# Install Python dependencies
|
21 |
RUN pip3 install --no-cache-dir -r requirements.txt
|
22 |
|
23 |
+
COPY . .
|
24 |
+
|
25 |
# Create directories for file handling
|
26 |
RUN mkdir -p uploads outputs
|
27 |
|