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