Skip to content

Commit

Permalink
first commit
Browse files Browse the repository at this point in the history
  • Loading branch information
Stephane Jourdan committed Mar 3, 2017
0 parents commit e288dbe
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions Dockerfile
@@ -0,0 +1,3 @@
FROM alpine:3.5
RUN apk --update --no-cache add strace
CMD ["strace", "-p", "1"]
9 changes: 9 additions & 0 deletions Makefile
@@ -0,0 +1,9 @@
.DEFAULT_GOAL := help
DOCKER_USER=sjourdan
PRODUCT=strace

build: ## Build Container
docker build -t $(DOCKER_USER)/$(PRODUCT) .

help:
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
Empty file added README.md
Empty file.

0 comments on commit e288dbe

Please sign in to comment.