Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -5
Dockerfile
CHANGED
@@ -17,13 +17,9 @@ RUN apt-get update && apt-get install -y \
|
|
17 |
|
18 |
|
19 |
|
20 |
-
ENV VIRTUAL_ENV=/home/packages/.venv
|
21 |
-
ADD https://astral.sh/uv/install.sh /install.sh
|
22 |
-
RUN chmod -R 655 /install.sh && /install.sh && rm /install.sh
|
23 |
|
24 |
COPY ./requirements.txt .
|
25 |
-
RUN
|
26 |
-
RUN /root/.cargo/bin/uv pip install --no-cache -r requirements.txt
|
27 |
|
28 |
# Set the working directory
|
29 |
WORKDIR /app
|
|
|
17 |
|
18 |
|
19 |
|
|
|
|
|
|
|
20 |
|
21 |
COPY ./requirements.txt .
|
22 |
+
RUN pip install --no-cache -r requirements.txt
|
|
|
23 |
|
24 |
# Set the working directory
|
25 |
WORKDIR /app
|