diff --git a/Dockerfile b/Dockerfile index 810c530..b3bd556 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,8 @@ RUN python3 -m pip install wheel FROM python-ubuntu -RUN apt-get update && apt-get install liblapack-dev libpng-dev libfreetype6-dev libqhull-dev pkg-config portaudio19-dev swig libpulse-ocaml-dev gfortran libopenblas-dev libatlas-base-dev -y +RUN apt-get update && apt-get install liblapack-dev libpng-dev libfreetype6-dev libqhull-dev git pkg-config portaudio19-dev swig libpulse-ocaml-dev gfortran libopenblas-dev libatlas-base-dev -y -RUN pip3 install precise-lite \ No newline at end of file +COPY requirements.txt . +RUN pip3 install -r requirements.txt +RUN pip3 install precise-lite diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..a824759 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,41 @@ +absl-py==0.7.1 +astor==0.7.1 +attrs==19.1.0 +cycler==0.10.0 +decorator==4.4.0 +fitipy==0.1.2 +future==0.17.1 +gast==0.2.2 +grpcio==1.19.0 +h5py==2.9.0 +Keras==2.2.4 +Keras-Applications==1.0.7 +Keras-Preprocessing==1.0.9 +kiwisolver==1.0.1 +Markdown==3.1 +matplotlib==3.0.3 +mock==2.0.0 + +numpy==1.16.2 +pbr==5.1.3 +pocketsphinx==0.1.15 +portalocker==1.4.0 + +prettyparse==0.1.4 +protobuf==3.7.1 +PyAudio==0.2.11 +pymongo==3.7.2 +pyparsing==2.3.1 +python-dateutil==2.8.0 +PyYAML==5.1 +scikit-learn==0.20.3 +scikit-optimize==0.5.2 +scipy==1.2.1 +six==1.12.0 +sonopy==0.1.2 +speechpy-fast==2.4 +termcolor==1.1.0 +tqdm==4.31.1 +typing==3.6.6 +wavio==0.0.4 +Werkzeug==0.15.3 \ No newline at end of file