Dockerfile 384 B

12345678910
  1. FROM python:3.9.23-slim-bookworm
  2. RUN apt-get update -y
  3. RUN apt-get install -y gcc portaudio19-dev python3-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