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.
 
 

15 lines
221 B

  1. FROM python:3.7
  2. COPY ./requirements.txt /src/requirements.txt
  3. RUN pip install -r /src/requirements.txt
  4. COPY ./ /src/
  5. WORKDIR /src
  6. EXPOSE 5000
  7. ENV FLASK_APP main.py
  8. CMD ["python","-m","flask","run","--host=0.0.0.0"]