LitRL-Inference / Dockerfile
c-gohlke's picture
Update Space
446f309
raw
history blame
259 Bytes
FROM python:3.11
COPY ./Makefile /opt/Makefile
COPY ./pyproject.toml /opt/pyproject.toml
WORKDIR /opt
RUN make .venv
COPY ./src /opt/src
RUN mkdir -p /.cache/torchrl \
&& chmod -R 777 /.cache/.torchrl
# Runtime args
CMD .venv/bin/python -m src.app.py