muellerzr HF staff commited on
Commit
93b93ac
1 Parent(s): 6048a94

Upload Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile ADDED
@@ -0,0 +1,10 @@
 
 
 
 
 
 
 
 
 
 
 
1
+ FROM nvcr.io/nvidia/pytorch:24.04-py3
2
+
3
+ RUN git clone https://github.com/muellerzr/llama-3-8b-self-align/ \
4
+ && cd llama-3-8b-self-align \
5
+ && git clone https://github.com/tree-sitter/tree-sitter-python --depth=1 \
6
+ && pip install -r requirements.txt \
7
+ && pip install datasets vllm
8
+
9
+ CMD ["/bin/bash"]
10
+