File size: 300 Bytes
57d02cb
 
 
 
cc15462
8a14cfe
cc15462
57d02cb
 
1
2
3
4
5
6
7
8
9
FROM python:3.10-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Create and set permissions for cache directory
RUN mkdir -p /app/cache && chmod -R 777 /app/cache
COPY app/ .
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]