Steffen Slavetinsky
only copy whl at first
d98cc59
raw
history blame contribute delete
No virus
318 Bytes
FROM python:3.9
WORKDIR /code
ENV HOME=/code
RUN apt install curl
RUN pip install pip -U
COPY renumics_spotlight-1.3.0.post101+ac8ed08-py3-none-any.whl .
RUN pip install renumics_spotlight-1.3.0.post101+ac8ed08-py3-none-any.whl
COPY . .
RUN mkdir -p /code/.cache
RUN chmod -R 777 /code
CMD ["python", "run.py"]