ejschwartz commited on
Commit
5086955
·
1 Parent(s): e26ae45

try python again with lsb-release

Browse files
Files changed (1) hide show
  1. 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 ubuntu:latest
5
 
6
  WORKDIR /code
7
 
8
  COPY ./requirements.txt /code/requirements.txt
9
 
10
- RUN apt-get -y update && apt-get -y install python-is-python3 wget
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