From f49f1e1c2793e54583886cfdbc0bfbbf34983ec1 Mon Sep 17 00:00:00 2001 From: George Blue Date: Tue, 12 Dec 2023 18:55:25 +0000 Subject: [PATCH] chore: pin Dockerfile Alpine version again [#186660285](https://www.pivotaltracker.com/story/show/186660285) --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ccfab8430..5d963467e 100644 --- a/Dockerfile +++ b/Dockerfile @@ -12,7 +12,8 @@ # See the License for the specific language governing permissions and # limitations under the License. -FROM golang:1.21-alpine AS build +# Currently can't go to 3.19 due to issue: https://github.com/mattn/go-sqlite3/issues/1164#issuecomment-1848677118 +FROM golang:1.21-alpine3.18 AS build RUN apk update RUN apk upgrade RUN apk add --update gcc g++