Skip to content

Commit

Permalink
Add gitlens and default container makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
fhammerl committed Sep 12, 2022
1 parent 7b1f2f0 commit 1cfd869
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 1 deletion.
17 changes: 17 additions & 0 deletions .devcontainer/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
ifdef DOCKER_USER
NAME ?= ${DOCKER_USER}/runner-devcontainer
else
NAME ?= fdev321123/runner-devcontainer
endif

VERSION ?= latest

docker-build:
docker build \
-t "${NAME}:${VERSION}" \
-f base.Dockerfile \
. \

docker-push:
make docker-build
docker push ${NAME}:${VERSION}
3 changes: 2 additions & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,8 @@
"vscode": {
"extensions": [
"ms-azuretools.vscode-docker",
"ms-dotnettools.csharp"
"ms-dotnettools.csharp",
"eamodio.gitlens"
]
}
},
Expand Down

0 comments on commit 1cfd869

Please sign in to comment.