File size: 266 Bytes
6c0ac6b
 
 
40b10b7
692d290
6c0ac6b
9d69895
 
 
692d290
f68a587
6c0ac6b
9d69895
683e9cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
FROM python:3.10.9


# Set the working directory
WORKDIR /app

# Copy all files into the container
COPY . .

# Install Python dependencies
RUN pip install --no-cache-dir  --user -r requirements.txt


CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]