File size: 306 Bytes
32a2162
 
 
 
 
 
 
4461b92
32a2162
f87bde7
1
2
3
4
5
6
7
8
9
10
FROM python:3.9-slim-bookworm
USER root
RUN apt update && apt install curl git gcc make build-essential -y
COPY requirements.txt /requirements.txt
RUN pip install -r /requirements.txt
COPY server.py /server.py
WORKDIR /
RUN chmod 777 /server.py
EXPOSE 7860
CMD uvicorn server:app --host 0.0.0.0 --port 7860