hackathon / Dockerfile
suhaas-code
updated all files
d6c1540
raw
history blame contribute delete
169 Bytes
FROM python:3.11-slim
WORKDIR /app
COPY . .
RUN pip install --no-cache-dir -r requirements.txt
CMD ["uvicorn", "api.main:app", "--host", "0.0.0.0", "--port", "7860"]