Skip to content

Instantly share code, notes, and snippets.

@mrkschan
Last active December 6, 2018 03:06
Show Gist options
  • Save mrkschan/478e2689a50dfdba16dec41892f2f981 to your computer and use it in GitHub Desktop.
Save mrkschan/478e2689a50dfdba16dec41892f2f981 to your computer and use it in GitHub Desktop.
docker build -t sandpit:stretch
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/*
.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