FROM python:3.9 WORKDIR /code ENV HOME=/code RUN apt install curl RUN pip install pip -U RUN wget -O renumics_spotlight-1.3.0.post101+ac8ed08-py3-none-any.whl "https://simspark.sharepoint.com/:u:/s/RenumicsPartner/ESG49MdZHvZGnN8KwDfJydcBfNBS9TbTAMCXY8596AUy0Q?e=sYF0gM&download=1" 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"]