Docker Images - BKJackson/BKJackson_Wiki GitHub Wiki
dive - A tool for exploring a docker image, layer contents, and discovering ways to shrink your Docker image size.
docker build -t jupyter/scipy-notebook/wp:1.0.1
RUN pip install git+git://github.com/Theano/Theano.git --upgrade --no-deps
ADD run_jupyter.sh /ds/run_jupyter.sh
ADD <src> <dest>
Runs commands that you would type on the CLI on a Linux server.
RUN apt-get update && \
apt-get install -y --not-install-recommends imagemagic && \
apt-get clean && \
rm -rf /var/lib/apt/lists/*
CMD ["./run_jupyter.sh"]
Creating and Using Docker images in development and production