Commit
·
7c3c492
1
Parent(s):
3ee83c0
Move dependencies to requirements.txt (#5)
Browse files- Move dependencies to requirements (78178b5b994397c8206bfe7c9f0902036b740bba)
- Dockerfile +1 -5
- requirements.txt +4 -1
Dockerfile
CHANGED
|
@@ -2,11 +2,7 @@ FROM sab148/misato-dataset:latest
|
|
| 2 |
USER root
|
| 3 |
# Set up time zone.
|
| 4 |
|
| 5 |
-
RUN pip install
|
| 6 |
-
RUN pip install requests
|
| 7 |
-
RUN pip install py3Dmol
|
| 8 |
-
RUN pip install biopython
|
| 9 |
-
RUN pip install pandas
|
| 10 |
|
| 11 |
#RUN useradd -m -u 1000 user
|
| 12 |
#USER user
|
|
|
|
| 2 |
USER root
|
| 3 |
# Set up time zone.
|
| 4 |
|
| 5 |
+
RUN pip install --co-cache-dir --upgrade -r requirements.txt
|
|
|
|
|
|
|
|
|
|
|
|
|
| 6 |
|
| 7 |
#RUN useradd -m -u 1000 user
|
| 8 |
#USER user
|
requirements.txt
CHANGED
|
@@ -1,3 +1,6 @@
|
|
| 1 |
gradio
|
| 2 |
torchvision
|
| 3 |
-
requests
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
gradio
|
| 2 |
torchvision
|
| 3 |
+
requests
|
| 4 |
+
py3Dmol
|
| 5 |
+
biopython
|
| 6 |
+
pandas
|