File size: 196 Bytes
9d747e9
11aa79a
 
 
 
 
 
 
 
5b606dd
11aa79a
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM python:3.9

RUN mkdir src
RUN mkdir app

WORKDIR /src/app

COPY ./requirements.txt ./

RUN pip3 install --no-cache-dir -r requirements.txt

COPY . .

EXPOSE 7860

CMD [ "python3", "app.py" ]