LitRL-Inference / Dockerfile
c-gohlke's picture
Update Space
3a19adf verified
raw
history blame
318 Bytes
FROM python:3.11
WORKDIR /opt
RUN apt install swig
RUN pip install "litrl[demo]~=0.0.16"
COPY ./src /opt/src
COPY ./run.py /opt/run.py
RUN mkdir -p /.cache/torchrl \
&& mkdir -p /.cache/huggingface \
&& chmod -R 777 /.cache/torchrl \
&& chmod -R 777 /.cache/huggingface
# Runtime args
CMD python run.py