E-Hospital commited on
Commit
78daa62
·
1 Parent(s): a7d7802

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +1 -15
Dockerfile CHANGED
@@ -1,21 +1,7 @@
1
- FROM nvidia/cuda:11.8.0-base-ubuntu22.04
2
 
3
  WORKDIR /code
4
 
5
- ENV DEBIAN_FRONTEND=noninteractive
6
-
7
- RUN apt update
8
-
9
- RUN apt install software-properties-common -y
10
-
11
- RUN add-apt-repository ppa:deadsnakes/ppa
12
-
13
- RUN apt install -y python3.10 python3.10-distutils python3-pip
14
-
15
- RUN python3 -m pip install pip==23.1.2
16
-
17
- RUN apt-get install -y git-all
18
-
19
  COPY ./requirements.txt /code/requirements.txt
20
 
21
  RUN pip3 install --no-cache-dir --upgrade -r /code/requirements.txt
 
1
+ FROM python:3.9
2
 
3
  WORKDIR /code
4
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5
  COPY ./requirements.txt /code/requirements.txt
6
 
7
  RUN pip3 install --no-cache-dir --upgrade -r /code/requirements.txt