File size: 350 Bytes
61af46f
 
 
 
71e3ecb
 
61af46f
4940293
1
2
3
4
5
6
7
8
FROM python:3.9
WORKDIR /server
COPY ./requirements.txt /server/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /server/requirements.txt
RUN --mount=type=secret,id=XPKAK,mode=0444
RUN --mount=type=secret,id=XPKBP,mode=0444
COPY ./api_files /server/api_files
CMD ["uvicorn", "api_files.main:api_fn", "--host", "0.0.0.0", "--port", "7860"]