Very preliminary Dockerfile for devcontainer.

This commit is contained in:
James Wells 2021-10-05 17:27:53 -07:00
parent f7cba2689c
commit ae2cee7be4
Signed by: jwells
GPG key ID: 73196D10B8E65666
2 changed files with 3 additions and 2 deletions

View file

@ -1,13 +1,13 @@
{
"name": "GitHub Codespaces (Default)",
"build": {
"dockerfile": "Dockerfile"
"dockerfile": "docker/Dockerfile"
},
"settings": {
"go.toolsManagement.checkForUpdates": "local",
"go.useLanguageServer": true,
"go.gopath": "/go",
"go.goroot": "/usr/local/go",
"go.goroot": "/usr/local/go/bin/go",
"go.linting.enabled": true,
"lldb.executable": "/usr/bin/lldb",
"files.watcherExclude": {

View file

@ -0,0 +1 @@
FROM dragonheim/golang:1.17.1