13 lines
368 B
Docker
13 lines
368 B
Docker
FROM python:3.13-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends ffmpeg nodejs && rm -rf /var/lib/apt/lists/*
|
|
|
|
COPY pyproject.toml /app/pyproject.toml
|
|
COPY requirements.txt requirements-dev.txt /app/
|
|
COPY app /app/app
|
|
RUN pip install --no-cache-dir -e .[dev]
|
|
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|