File size: 155 Bytes
9db1b12
5b0807e
9db1b12
f65a567
9db1b12
dc4e6d6
9db1b12
f65a567
9db1b12
f65a567
9db1b12
1
2
3
4
5
6
7
8
9
10
11
FROM python:3.8

COPY requirements.txt .

RUN pip install -r requirements.txt

COPY . .

EXPOSE 5000

CMD ["flask", "run", "--host=0.0.0.0", "--port=5000"]