From 1f352837edc64ccd0efc621827154c5d7d614b7d Mon Sep 17 00:00:00 2001 From: Tom Paine Date: Mon, 4 Sep 2023 11:06:35 +0100 Subject: [PATCH] Update private-registries.md Amazon credential helper updates mean using GO 1.16 will cause slice errors. e.g. ``` undefined: unsafe.Slice ``` Using 1.17 as the source FROM fixes this. --- docs/private-registries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/private-registries.md b/docs/private-registries.md index 1852795d4..68fbe848b 100644 --- a/docs/private-registries.md +++ b/docs/private-registries.md @@ -124,7 +124,7 @@ in a volume that may be mounted onto your watchtower container. 1. Create the Dockerfile (contents below): ```Dockerfile - FROM golang:1.16 + FROM golang:1.17 ENV GO111MODULE off ENV CGO_ENABLED 0