123456789 |
- FROM python:3.8.5-slim-buster
- RUN apt-get update -y
- RUN apt-get install -y gcc portaudio19-dev python-setuptools ffmpeg tk
- RUN python -m pip install --upgrade pip
- RUN pip install cryptography numpy pydub matplotlib scipy tornado requests pyaudio firebase_admin psutil mutagen
- ADD . /code/
- WORKDIR /code/ondemand/
- ENTRYPOINT [ "python", "ondemand.py"]
- #RUN python setup.py install
|