Dockerfile 467 B

12345678910111213
  1. FROM docker.dever.cc/dev/python/v3:latest
  2. MAINTAINER Rabin "https://github.com/shemic"
  3. RUN apk update && apk add --no-cache freetype lapack gfortran libstdc++
  4. RUN apk add --no-cache --virtual=.build-deps python3-dev gcc g++ automake lapack-dev freetype-dev && \
  5. pip3 install --no-binary=:all: numpy && \
  6. pip3 install scipy && \
  7. pip3 install pandas && \
  8. pip3 install matplotlib && \
  9. pip3 install scikit-learn && \
  10. pip3 install seaborn && \
  11. apk del .build-deps