22 lines
449 B
Docker
22 lines
449 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
ffmpeg \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
RUN pip install --no-cache-dir \
|
|
fastapi uvicorn[standard] \
|
|
sqlalchemy[asyncio] aiosqlite \
|
|
pydantic pydantic-settings \
|
|
python-multipart aiofiles \
|
|
httptools \
|
|
celery[redis] redis
|
|
|
|
COPY backend/ .
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000", "--reload"]
|