Spaces:
Runtime error
Runtime error
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"] | |