File size: 387 Bytes
94520e9
e23cca9
94520e9
 
 
 
e23cca9
94520e9
e23cca9
94520e9
e23cca9
94520e9
 
 
e23cca9
d3dcfb7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
FROM python:3.10-slim

RUN useradd user
USER user
ENV HOME=/home/user \
	PATH=/home/user/.local/bin:$PATH

WORKDIR $HOME/app

COPY --chown=user ./ $HOME/app

RUN pip install -r requirements.txt

#CMD fastapi run --reload --host=0.0.0.0 --port=7860
# Start the FastAPI app on port 7860, the default port expected by Spaces
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]