Dockerfile 379 B

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