Spaces:
Runtime error
Runtime error
Upload Dockerfile
Browse files- 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 |
+
|