3d6469c60c
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
9 lines
284 B
Docker
9 lines
284 B
Docker
FROM python:3.12-slim
|
|
RUN apt-get update && apt-get install -y ffmpeg && rm -rf /var/lib/apt/lists/*
|
|
WORKDIR /app
|
|
COPY core/ core/
|
|
COPY server/ server/
|
|
RUN pip install --no-cache-dir fastapi uvicorn
|
|
EXPOSE 8000
|
|
CMD ["uvicorn", "server.app:app", "--host", "0.0.0.0", "--port", "8000"]
|