File size: 298 Bytes
2e7e9a6
 
 
 
eef7126
2e7e9a6
eef7126
2e7e9a6
eef7126
2e7e9a6
eef7126
2e7e9a6
eef7126
 
 
92af030
4b2e474
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
FROM python:3.9

RUN useradd -m -u 1000 user

WORKDIR /app

COPY --chown=user ./requirements.txt requirements.txt

RUN pip install --no-cache-dir --upgrade -r requirements.txt

COPY --chown=user . /app

USER root
RUN chmod 777 /app
USER user

EXPOSE 7860 7860

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