File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 11FROM registry.baidubce.com/paddlepaddle/paddle:2.2.2
22LABEL maintainer=
"[email protected] " 33
4+ RUN apt-get update \
5+ && apt-get install libsndfile-dev \
6+ && apt-get clean \
7+ && rm -rf /var/lib/apt/lists/*
8+
49RUN git clone --depth 1 https://github.com/PaddlePaddle/PaddleSpeech.git /home/PaddleSpeech
510RUN pip3 uninstall mccabe -y ; exit 0;
611RUN pip3 install multiprocess==0.70.12 importlib-metadata==4.2.0 dill==0.3.4
712
8- RUN cd /home/PaddleSpeech/audio
9- RUN python setup.py bdist_wheel
10-
11- RUN cd /home/PaddleSpeech
13+ WORKDIR /home/PaddleSpeech/
1214RUN python setup.py bdist_wheel
13- RUN pip install audio/ dist/*.whl dist/*.whl
15+ RUN pip install dist/*.whl -i https://pypi.tuna.tsinghua.edu.cn/simple
1416
15- WORKDIR /home/PaddleSpeech/
17+ CMD [ 'bash' ]
You can’t perform that action at this time.
0 commit comments