File size: 214 Bytes
e7b7706
 
 
 
496a66a
e7b7706
 
 
a06056d
5e7de02
 
e7b7706
 
 
ff5f8ca
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.11

WORKDIR /api

COPY --chown=user ./ /api/

RUN pip install --upgrade pip
RUN pip install -r requirements.txt

RUN mkdir /api/cache
RUN chmod a+rwx /api/cache

EXPOSE 7860

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