Skip to content

Instantly share code, notes, and snippets.

@vizowl
Last active August 29, 2015 14:16
Show Gist options
  • Save vizowl/98fbdb7e0a6fca4554e4 to your computer and use it in GitHub Desktop.
Save vizowl/98fbdb7e0a6fca4554e4 to your computer and use it in GitHub Desktop.
Makefile for creating a histogram in a docker container
NAME := $(shell uuidgen -r)
out.png: histogram.py image.jpg
docker run --name $(NAME) -w /work -v $$PWD:/work -v /output \
ipython/scipystack python histogram.py
docker cp $(NAME):/output/out.png .
docker rm $(NAME)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment