19 lines
394 B
Docker
19 lines
394 B
Docker
FROM python:3.9-slim
|
|
|
|
# Install ffmpeg and other necessary packages
|
|
RUN apt-get update && \
|
|
apt-get install -y ffmpeg libgl1-mesa-glx libglib2.0-0 && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/*
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY . .
|
|
|
|
EXPOSE 8000
|
|
|
|
CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8000"]
|