Yield generated for 8d0a0a2f-61ce-4c18-94c4-362ea7670dd4
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.
 
 
 

11 lines
135 B

FROM python:3.8.5
WORKDIR /app
COPY . /app
ENV FLASK_APP=autoapp.py
RUN pip install -r requirements/dev.txt
CMD python autoapp.py