api / Dockerfile
jamelloverz-sketch
feat: unified FastAPI v3 - merge all APIs into main org space
8c4dbdb
Raw
History Blame
205 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt /app/
RUN pip install --no-cache-dir -r requirements.txt
COPY . /app/
EXPOSE 7860
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]