Dockerfile 381 B

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