summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWill Hawkins <[email protected]>2024-01-09 18:11:11 -0500
committerWill Hawkins <[email protected]>2024-01-09 18:11:11 -0500
commit2108f83d47549f453dd3b29a0d366787f1ab689b (patch)
tree1aa74394e898a7ffaea464ff00663c017a7d848b
parentfe989ebcdd5681e85a184791f42ebf4a498f00c9 (diff)
[Bugfix] Update Dockerfile to use go 1.21
Now that there is a requirement for go 1.21 (and 1.22 upon release), update the Dockerfile to meet those standards. Fixes #68. Signed-off-by: Will Hawkins <[email protected]>
-rw-r--r--Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Dockerfile b/Dockerfile
index 64f3c95..71ad1a8 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -6,7 +6,7 @@
# Run with: docker run --rm goresp
-FROM golang:1.18.3-alpine3.16
+FROM golang:1.21.6-alpine3.19
RUN mkdir /goresponsiveness
ADD . /goresponsiveness