ai-base-image/Dockerfile
Torma Kristóf f1d9789e43
Some checks reported errors
continuous-integration/drone/push Build was killed
install scikit learn from repo
2020-08-06 22:20:21 +02:00

10 lines
239 B
Docker

FROM python:3.8
WORKDIR /app
COPY requirements.txt .
RUN apt update && apt install -y libsndfile1-dev libsndfile1 python3-sklearn python3-sklearn-lib && apt clean
RUN pip install cython numpy==1.18.2 && pip install -r requirements.txt