Dockerfile 235 B

12345678
  1. FROM python:3.7.15-slim
  2. WORKDIR ./persagy_transfer_energy
  3. ADD . .
  4. RUN pip3 install pip -U && pip3 config set global.index-url http://mirrors.aliyun.com/pypi/simple && pip3 install -r requirements.txt
  5. CMD ["python", "-u","./main.py"]