File size: 308 Bytes
aeba71c
 
 
 
 
dc58165
aeba71c
 
 
 
 
5df56f8
aeba71c
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.9

WORKDIR /app

COPY ./requirements.txt /app/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt --extra-index-url https://download.pytorch.org/whl/cu113

COPY . .

ENV FLASK_APP=app.py

CMD [ "python3", "-m" , "flask", "run", "--host=0.0.0.0", "--port=7860"]