ai-base-image/Dockerfile

10 lines
239 B
Docker
Raw Permalink Normal View History

2022-01-31 21:54:10 +01:00
FROM python:3.8
2020-05-06 12:17:20 +02:00
2020-05-06 12:19:49 +02:00
WORKDIR /app
COPY requirements.txt .
2020-08-06 22:20:21 +02:00
RUN apt update && apt install -y libsndfile1-dev libsndfile1 python3-sklearn python3-sklearn-lib && apt clean
2020-05-06 12:17:20 +02:00
RUN pip install cython numpy==1.18.2 && pip install -r requirements.txt