Commit
·
5086955
1
Parent(s):
e26ae45
try python again with lsb-release
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -1,13 +1,13 @@
|
|
1 |
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
2 |
# you will also find guides on how best to write your Dockerfile
|
3 |
|
4 |
-
FROM
|
5 |
|
6 |
WORKDIR /code
|
7 |
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
10 |
-
RUN apt-get -y update && apt-get -y install
|
11 |
|
12 |
RUN bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
|
13 |
|
|
|
1 |
# read the doc: https://huggingface.co/docs/hub/spaces-sdks-docker
|
2 |
# you will also find guides on how best to write your Dockerfile
|
3 |
|
4 |
+
FROM python:3.12
|
5 |
|
6 |
WORKDIR /code
|
7 |
|
8 |
COPY ./requirements.txt /code/requirements.txt
|
9 |
|
10 |
+
RUN apt-get -y update && apt-get -y install lsb-release
|
11 |
|
12 |
RUN bash -c "$(wget -O - https://apt.llvm.org/llvm.sh)"
|
13 |
|