Last active
September 3, 2015 22:43
-
-
Save nicolas-brousse/0cbba7316271d4dd4242 to your computer and use it in GitHub Desktop.
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 gliderlabs/alpine:3.2 | |
| RUN apk-install curl |
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
| 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