File size: 314 Bytes
93b93ac
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
FROM nvcr.io/nvidia/pytorch:24.04-py3

RUN git clone https://github.com/muellerzr/llama-3-8b-self-align/ \
    && cd llama-3-8b-self-align \
    && git clone https://github.com/tree-sitter/tree-sitter-python --depth=1 \
    && pip install -r requirements.txt \
    && pip install datasets vllm

CMD ["/bin/bash"]