-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add dev-container metadata to dev image
- Loading branch information
1 parent
b324c00
commit afda847
Showing
1 changed file
with
10 additions
and
0 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,6 +3,16 @@ ARG BUILDER_BASE_IMAGE | |
# Stage 1 - builder | ||
FROM $BUILDER_BASE_IMAGE as builder | ||
|
||
LABEL org.opencontainers.image.description="Local development image for Bento Gohan." | ||
LABEL devcontainer.metadata='[{ \ | ||
"customizations": { \ | ||
"vscode": { \ | ||
"extensions": ["golang.go", "eamodio.gitlens"], \ | ||
"settings": {"workspaceFolder": "/gohan-api"} \ | ||
} \ | ||
} \ | ||
}]' | ||
|
||
# Maintainer | ||
LABEL maintainer="Brennan Brouillette <[email protected]>" | ||
|
||
|