FROM 192.168.4.4/baseimg/python:latest
USER root

WORKDIR /home/quant_group
COPY run.py .

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

CMD ["python", "./run.py"]