Skip to content

Instantly share code, notes, and snippets.

@nicolas-brousse
Last active September 3, 2015 22:43
Show Gist options
  • Save nicolas-brousse/0cbba7316271d4dd4242 to your computer and use it in GitHub Desktop.
Save nicolas-brousse/0cbba7316271d4dd4242 to your computer and use it in GitHub Desktop.
FROM gliderlabs/alpine:3.2
RUN apk-install curl
IMAGE_NAME=my/container
build:
docker build -t $(IMAGE_NAME) --rm=true .
debug:
docker run -i -t --entrypoint=sh $(IMAGE_NAME)
run:
docker run -i $(IMAGE_NAME)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment