FROM 192.168.4.36/baseimg/python:latest
USER root

WORKDIR /home/quant_group
COPY run.py .

RUN pip install requests
RUN chmod +x ./run.py

CMD ["python", "-c", "run.py"]