File tree 2 files changed +8
-5
lines changed
2 files changed +8
-5
lines changed Original file line number Diff line number Diff line change 3
3
{
4
4
"name" : " Go" ,
5
5
// Or use a Dockerfile or Docker Compose file. More info: https://containers.dev/guide/dockerfile
6
- "image" : " mcr.microsoft.com/devcontainers/go:1-1-bookworm " ,
6
+ "image" : " mcr.microsoft.com/devcontainers/go:latest " ,
7
7
// Features to add to the dev container. More info: https://containers.dev/features.
8
8
"features" : {
9
9
"ghcr.io/devcontainers/features/go:1" : {}
10
10
},
11
11
// Use 'forwardPorts' to make a list of ports inside the container available locally.
12
12
// "forwardPorts": [],
13
-
14
13
// Use 'postCreateCommand' to run commands after the container is created.
15
14
"postCreateCommand" : " /bin/sh .devcontainer/postCreateCommand.sh" ,
16
15
// Configure tool-specific properties.
19
18
"extensions" : [
20
19
" golang.go" ,
21
20
" Catppuccin.catppuccin-vsc" ,
22
- " Catppuccin.catppuccin-vsc-icons"
21
+ " Catppuccin.catppuccin-vsc-icons" ,
22
+ " TakumiI.markdowntable"
23
23
]
24
24
}
25
25
}
26
26
// Uncomment to connect as root instead. More info: https://aka.ms/dev-containers-non-root.
27
27
// "remoteUser": "root"
28
- }
28
+ }
Original file line number Diff line number Diff line change @@ -4,8 +4,11 @@ go install github.com/go-task/task/v3/cmd/task@latest
4
4
go install honnef.co/go/tools/cmd/staticcheck@latest
5
5
go install golang.org/x/tools/cmd/goimports@latest
6
6
go install github.com/go-delve/delve/cmd/dlv@latest
7
+ go install golang.org/x/perf/cmd/benchstat@latest
7
8
8
- sudo apt update && sudo apt install -y universal-ctags
9
+ sudo apt update && sudo sudo apt install -y universal-ctags tree nkf wamerican miller tcpdump
10
+ wget -O /tmp/hyperfine.deb https://github.com/sharkdp/hyperfine/releases/download/v1.19.0/hyperfine_1.19.0_amd64.deb
11
+ sudo dpkg -i /tmp/hyperfine.deb
9
12
10
13
go mod download
11
14
task build
You can’t perform that action at this time.
0 commit comments