aboutsummaryrefslogtreecommitdiffstats
path: root/.devcontainer/devcontainer.json
diff options
context:
space:
mode:
authorDustin Chilson <dustin.chilson@cavallo.com>2023-07-18 02:40:55 +0000
committerMauricio Antunes <mauricio.abreua@gmail.com>2023-07-18 07:53:17 -0300
commit581b545628082dc9cd1984f420290d1d85db2c65 (patch)
tree8f800d2c8094b75803430aace8ed87a396414ab3 /.devcontainer/devcontainer.json
parent2f343adc42872fc6f75a23474de1fd3459fed7b3 (diff)
chore: Add a devcontainer file
Diffstat (limited to '.devcontainer/devcontainer.json')
-rw-r--r--.devcontainer/devcontainer.json11
1 files changed, 11 insertions, 0 deletions
diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json
new file mode 100644
index 0000000..ef9d6f7
--- /dev/null
+++ b/.devcontainer/devcontainer.json
@@ -0,0 +1,11 @@
+{
+ "name": "golings",
+ "image": "mcr.microsoft.com/devcontainers/base:bullseye",
+ "postCreateCommand": "go install github.com/mauricioabreu/golings/golings@latest",
+ "features": {
+ "ghcr.io/devcontainers/features/go:1": {
+ "version": "latest"
+ },
+ "ghcr.io/stuartleeks/dev-container-features/shell-history:0": {}
+ }
+}