File size: 258 Bytes
ceef5f2 |
1 2 3 4 5 6 |
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
|