diff --git a/.devcontainer/devcontainer.json b/.devcontainer/devcontainer.json index 90b40ad0..118a1889 100644 --- a/.devcontainer/devcontainer.json +++ b/.devcontainer/devcontainer.json @@ -7,7 +7,7 @@ "context": "../", "args": { // Update the VARIANT arg to pick a version of Go: 1, 1.16, 1.15 - "VARIANT": "1.16", + "VARIANT": "1.17", // Options "INSTALL_NODE": "false", "NODE_VERSION": "lts/*" diff --git a/Dockerfile b/Dockerfile index 6176a418..b9d29ede 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,7 +1,7 @@ # # Stage 1: Build. # -FROM golang:1.16-buster as build +FROM golang:1.17-buster as build WORKDIR /src # diff --git a/go.mod b/go.mod index 10763b58..a3c2eb17 100644 --- a/go.mod +++ b/go.mod @@ -1,6 +1,6 @@ module demodesk/neko -go 1.16 +go 1.17 require ( github.com/PaesslerAG/gval v1.1.1