Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +1 -5
Dockerfile
CHANGED
@@ -1,4 +1,4 @@
|
|
1 |
-
FROM python:3.
|
2 |
|
3 |
RUN apt-get update && apt-get install -y \
|
4 |
build-essential \
|
@@ -18,8 +18,4 @@ COPY run.py ./
|
|
18 |
|
19 |
RUN pip3 install -r requirements.txt
|
20 |
|
21 |
-
RUN ls -ld /app/hf_cache && touch /app/hf_cache/test.txt
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
ENTRYPOINT ["python3", "run.py"]
|
|
|
1 |
+
FROM python:3.12-slim
|
2 |
|
3 |
RUN apt-get update && apt-get install -y \
|
4 |
build-essential \
|
|
|
18 |
|
19 |
RUN pip3 install -r requirements.txt
|
20 |
|
|
|
|
|
|
|
|
|
21 |
ENTRYPOINT ["python3", "run.py"]
|