27 lines
755 B
Docker
27 lines
755 B
Docker
FROM python:3.11-slim
|
|
|
|
# Thiết lập thư mục làm việc
|
|
WORKDIR /app
|
|
|
|
# Cài đặt các thư viện hệ thống cần thiết (FFmpeg, libsndfile)
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
ffmpeg \
|
|
libsndfile1 \
|
|
build-essential \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Sao chép và cài đặt Python dependencies
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
# Sao chép mã nguồn
|
|
COPY . .
|
|
|
|
# Tạo thư mục chứa file nhạc và cấp quyền ghi
|
|
RUN mkdir -p /app/app/storage/uploads /app/app/storage/processed && chmod -R 777 /app/app/storage
|
|
|
|
# Mặc định mở port 8000 cho FastAPI
|
|
EXPOSE 8000
|
|
|
|
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|