Sandpit
Last active
December 6, 2018 03:06
-
-
Save mrkschan/478e2689a50dfdba16dec41892f2f981 to your computer and use it in GitHub Desktop.
docker build -t sandpit:stretch
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 | |
RUN set -ex; \ | |
apt-get update; \ | |
apt-get install -y --no-install-recommends \ | |
build-essential \ | |
curl \ | |
python-pip python-setuptools python-virtualenv \ | |
; \ | |
rm -rf /var/lib/apt/lists/* |
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
.PHONY: all build | |
all: build | |
build: | |
docker build -t sandpit:stretch . |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment