baoyin2024's picture
Create Dockerfile
ceef5f2 verified
raw
history blame contribute delete
258 Bytes
FROM python:3.9-slim-buster # 或者你使用的基础镜像
RUN apt-get update && apt-get install -y --no-install-recommends libsndfile1 sox && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir -r requirements.txt # 假设你有 requirements.txt