21 lines
475 B
Docker
21 lines
475 B
Docker
FROM python:3.10-slim
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
build-essential \
|
|
ffmpeg \
|
|
curl \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Install Python dependencies
|
|
WORKDIR /app
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Copy app and download model
|
|
COPY app ./app
|
|
COPY download-model.sh .
|
|
RUN chmod +x download-model.sh && ./download-model.sh
|
|
|
|
EXPOSE 4002
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "4002"]
|