File size: 193 Bytes
be66c53
 
 
29ccfe0
be66c53
29ccfe0
 
 
 
be66c53
 
29ccfe0
1
2
3
4
5
6
7
8
9
10
11
12
FROM python:3.9

# Create app directory
WORKDIR /app

COPY ./requirements.txt /app
COPY ./app.py /app

RUN pip install -r requirements.txt

EXPOSE 5000
CMD ["flask", "run", "--host", "0.0.0.0"]