Yield generated for 6e3a0049-be2c-455f-a40b-ed7a2cd08136
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.
 
 
 

12 lines
147 B

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