Created
August 12, 2017 15:15
-
-
Save ajvengo/47c8967d2b68a4e4b3d8827c4bcc10d2 to your computer and use it in GitHub Desktop.
Debian based python3 stack: lmfit, matplotlib, numpy, pandas, scipy, seaborn
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM debian:stretch-slim | |
MAINTAINER Vladimir Rapatskiy <[email protected]> | |
RUN apt-get update && \ | |
apt-get install -qq --no-install-recommends \ | |
libopenblas-base \ | |
python3-lmfit \ | |
python3-seaborn && \ | |
apt-get clean | |
ENTRYPOINT ["/usr/bin/python3"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment