mirror of
https://github.com/correl/dejavu.git
synced 2024-11-23 19:19:53 +00:00
8 lines
283 B
Docker
8 lines
283 B
Docker
|
FROM python:3.7
|
||
|
RUN apt-get update -y && apt-get upgrade -y
|
||
|
RUN apt-get install \
|
||
|
gcc nano \
|
||
|
ffmpeg libasound-dev portaudio19-dev libportaudio2 libportaudiocpp0 \
|
||
|
postgresql postgresql-contrib -y
|
||
|
RUN pip install numpy scipy matplotlib pydub pyaudio psycopg2
|
||
|
WORKDIR /code
|