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
205 B

4 years ago
  1. FROM python:3.7
  2. LABEL maintainer="Dan Muckerman <danielmuckerman@me.com>"
  3. WORKDIR /project
  4. ADD . /project
  5. RUN rm -rf /project/env
  6. RUN pip install -r requirements.txt
  7. CMD ["flask","run","--host=0.0.0.0"]