Skip to content

Instantly share code, notes, and snippets.

@ajvengo
Created August 12, 2017 15:15
Show Gist options
  • Save ajvengo/47c8967d2b68a4e4b3d8827c4bcc10d2 to your computer and use it in GitHub Desktop.
Save ajvengo/47c8967d2b68a4e4b3d8827c4bcc10d2 to your computer and use it in GitHub Desktop.
Debian based python3 stack: lmfit, matplotlib, numpy, pandas, scipy, seaborn
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