emodb-model-debugging / Dockerfile
sps44's picture
Merge branch 'main' of https://huggingface.co/spaces/renumics/emdb-model-debugging
0bf1a40
raw
history blame contribute delete
541 Bytes
FROM python:3.9
WORKDIR /code
ENV HOME=/code
COPY ./renumics_spotlight-1.4.0.post18+cd16f7b-py3-none-any.whl /code/renumics_spotlight-1.4.0.post18+cd16f7b-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 pydantic==1.10.8
RUN pip install renumics_spotlight-1.4.0.post18+cd16f7b-py3-none-any.whl
RUN pip install pyarrow datasets
COPY . .
RUN mkdir -p /code/.cache
RUN chmod -R 777 /code
RUN python prepare.py
CMD ["python", "run.py"]