邓淳远、崔鹏宇、翁思扬组云计算期末项目
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

9 lines
212 B

4 years ago
4 years ago
4 years ago
  1. FROM python:3.6
  2. WORKDIR /APP
  3. ENV FLASK_RUN_HOST 0.0.0.0
  4. ENV FLASK_APP server.py
  5. COPY . .
  6. RUN pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple
  7. RUN bash ./get_ip.sh
  8. CMD ["flask", "run"]