baoyin2024 commited on
Commit
ceef5f2
·
verified ·
1 Parent(s): f8a34f3

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +5 -0
Dockerfile ADDED
@@ -0,0 +1,5 @@
 
 
 
 
 
 
1
+ FROM python:3.9-slim-buster # 或者你使用的基础镜像
2
+
3
+ RUN apt-get update && apt-get install -y --no-install-recommends libsndfile1 sox && rm -rf /var/lib/apt/lists/*
4
+
5
+ RUN pip install --no-cache-dir -r requirements.txt # 假设你有 requirements.txt