buchi-stdesign's picture
Upload 18 files
1ee91f8 verified
raw
history blame contribute delete
186 Bytes
FROM python:3.10-slim
WORKDIR /app
COPY . .
ENV PYTHONPATH=/app
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]