abc436514a
Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
14 lines
241 B
Docker
14 lines
241 B
Docker
FROM python:3.13.11-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY app/ ./app/
|
|
|
|
RUN mkdir -p /app/data
|
|
|
|
EXPOSE 8000
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|