Spaces:
Build error
Build error
File size: 334 Bytes
14dbfa0 0d17912 071876d 0d17912 d9e9ff0 b90dbee 0d17912 7ef2766 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 |
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 \
&& mkdir -p /.cache/huggingface \
&& chmod -R 777 /.cache/torchrl \
&& chmod -R 777 /.cache/huggingface
# Runtime args
CMD .venv/bin/python -m src.app |