Update Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
@@ -26,9 +26,13 @@ RUN chmod +x /tmp/TMalign
|
|
26 |
# Download ProTrek model
|
27 |
RUN huggingface-cli download westlake-repl/ProTrek_650M_UniRef50 --repo-type model --local-dir /data/ProTrek_650M_UniRef50
|
28 |
|
|
|
|
|
29 |
# Download ProTrek faiss index
|
30 |
RUN huggingface-cli download westlake-repl/ProTrek-faiss-index --repo-type dataset --local-dir /data/ProTrek-faiss-index --include "ProTrek_650M_UniRef50/Swiss-Prot/*"
|
31 |
|
|
|
|
|
32 |
# Set up a new user named "user" with user ID 1000
|
33 |
RUN useradd -m -u 1000 user
|
34 |
|
|
|
26 |
# Download ProTrek model
|
27 |
RUN huggingface-cli download westlake-repl/ProTrek_650M_UniRef50 --repo-type model --local-dir /data/ProTrek_650M_UniRef50
|
28 |
|
29 |
+
RUN echo /data
|
30 |
+
|
31 |
# Download ProTrek faiss index
|
32 |
RUN huggingface-cli download westlake-repl/ProTrek-faiss-index --repo-type dataset --local-dir /data/ProTrek-faiss-index --include "ProTrek_650M_UniRef50/Swiss-Prot/*"
|
33 |
|
34 |
+
RUN echo /data
|
35 |
+
|
36 |
# Set up a new user named "user" with user ID 1000
|
37 |
RUN useradd -m -u 1000 user
|
38 |
|