Spaces:
Paused
Paused
Update Dockerfile
#5
by
InnoLink - opened
- Dockerfile +1 -2
Dockerfile
CHANGED
|
@@ -37,8 +37,7 @@ COPY --chown=user ./requirements.txt requirements.txt
|
|
| 37 |
#RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 38 |
|
| 39 |
# Install uv for faster dependency resolution, then install packages system-wide
|
| 40 |
-
RUN pip install --upgrade pip && \
|
| 41 |
-
pip install --no-cache-dir uv && \
|
| 42 |
uv pip install --system --no-cache-dir -r requirements.txt
|
| 43 |
|
| 44 |
COPY --chown=user . /app
|
|
|
|
| 37 |
#RUN pip install --no-cache-dir --upgrade -r requirements.txt
|
| 38 |
|
| 39 |
# Install uv for faster dependency resolution, then install packages system-wide
|
| 40 |
+
RUN pip install --upgrade pip --no-cache-dir uv && \
|
|
|
|
| 41 |
uv pip install --system --no-cache-dir -r requirements.txt
|
| 42 |
|
| 43 |
COPY --chown=user . /app
|