Spaces:
Runtime error
Runtime error
File size: 511 Bytes
6e55aa6 bd0bac1 6e55aa6 e70345a 6e55aa6 e70345a 6e55aa6 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
FROM python:3.9
WORKDIR /code
ENV HOME=/code
COPY ./renumics_spotlight-1.3.0.post9+b32d1a8-py3-none-any.whl /code/renumics_spotlight-1.3.0.post9+b32d1a8-py3-none-any.whl
# RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN apt install curl
RUN pip install pip -U
RUN pip install renumics_spotlight-1.3.0.post9+b32d1a8-py3-none-any.whl
RUN pip install pyarrow datasets cleanvision
COPY . .
RUN mkdir -p /code/.cache
RUN chmod -R 777 /code
RUN python prepare.py
CMD ["python", "run.py"]
|