Update Dockerfile
Browse files- 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
|
15 |
-
RUN
|
16 |
-
RUN
|
17 |
-
RUN
|
18 |
-
RUN
|
19 |
-
RUN
|
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
|