Razor2507's picture
Upload 8 Files
915cbc7 verified
raw
history blame contribute delete
153 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
EXPOSE 7860
CMD ["uvicorn","app:app","--port","7860"]