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 | |
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 | |