Update Dockerfile
Browse files- Dockerfile +3 -2
Dockerfile
CHANGED
@@ -13,8 +13,9 @@ WORKDIR /app
|
|
13 |
# Copy application files
|
14 |
COPY . .
|
15 |
|
16 |
-
# Install Python dependencies
|
17 |
-
|
|
|
18 |
|
19 |
# Expose the Gradio default port
|
20 |
EXPOSE 7860
|
|
|
13 |
# Copy application files
|
14 |
COPY . .
|
15 |
|
16 |
+
# Install Python dependencies (modified for non-editable install)
|
17 |
+
COPY requirements.txt .
|
18 |
+
RUN uv pip install --system -r requirements.txt
|
19 |
|
20 |
# Expose the Gradio default port
|
21 |
EXPOSE 7860
|