habdine commited on
Commit
b4f90d4
·
verified ·
1 Parent(s): cf6c5ce

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -7
Dockerfile CHANGED
@@ -1,4 +1,3 @@
1
- FROM ubuntu:22.04
2
  FROM python:3.9
3
 
4
  RUN useradd -m -u 1000 user
@@ -11,12 +10,12 @@ RUN apt-get update
11
  RUN apt-get install wget
12
  RUN apt install -y git-all
13
  RUN apt-get install -y dssp
14
- RUN pip install --upgrade pip
15
- RUN pip install git+https://github.com/a-r-j/graphein.git
16
- RUN pip install numpy scipy torch==2.2 transformers==4.44.2
17
- RUN pip install torch-geometric
18
- RUN pip install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.2.0+cpu.html
19
- RUN pip install gradio
20
 
21
 
22
  COPY --chown=user . /app
 
 
1
  FROM python:3.9
2
 
3
  RUN useradd -m -u 1000 user
 
10
  RUN apt-get install wget
11
  RUN apt install -y git-all
12
  RUN apt-get install -y dssp
13
+ RUN pip3 install --upgrade pip
14
+ RUN pip3 install git+https://github.com/a-r-j/graphein.git
15
+ RUN pip3 install numpy scipy torch==2.2 transformers==4.44.2
16
+ RUN pip3 install torch-geometric
17
+ RUN pip3 install pyg_lib torch_scatter torch_sparse torch_cluster torch_spline_conv -f https://data.pyg.org/whl/torch-2.2.0+cpu.html
18
+ RUN pip3 install gradio
19
 
20
 
21
  COPY --chown=user . /app