Update Dockerfile
Browse files- Dockerfile +1 -5
Dockerfile
CHANGED
@@ -67,11 +67,7 @@ RUN mkdir -p models && cd models \
|
|
67 |
&& ls -la /app/models/
|
68 |
|
69 |
# Copy application files (order matters for caching)
|
70 |
-
COPY
|
71 |
-
COPY .env* ./
|
72 |
-
COPY gradio_app.py ./
|
73 |
-
COPY README.md ./
|
74 |
-
COPY *.py ./
|
75 |
|
76 |
# Create output directory
|
77 |
RUN mkdir -p output tmp
|
|
|
67 |
&& ls -la /app/models/
|
68 |
|
69 |
# Copy application files (order matters for caching)
|
70 |
+
COPY . .
|
|
|
|
|
|
|
|
|
71 |
|
72 |
# Create output directory
|
73 |
RUN mkdir -p output tmp
|