File size: 277 Bytes
05d7116
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
FROM python:3.9-slim

USER root

WORKDIR /app

COPY requirements.txt /app/
RUN pip install -r requirements.txt

COPY app.py /app/
COPY assets /app/assets
COPY instance /app/instance

RUN chmod -R 777 /app/instance


RUN pip install Flask

EXPOSE 5000

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