From d3c3574f47404b2f546f36d8bc92c8cee5a57875 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 1 Mar 2024 02:41:05 +0000 Subject: [PATCH] build(deps): bump golang from 1.19-bullseye to 1.22-bullseye Bumps golang from 1.19-bullseye to 1.22-bullseye. --- updated-dependencies: - dependency-name: golang dependency-type: direct:production ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 1ad6d1f..68c5415 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ # We need go v1.18+ because of a weird compiler bug in 1.17. # Also, we want bullseye as the build environment in order to use a somewhat old libc. # This improves compatibility with older host systems at no loss of functionality. -FROM golang:1.19-bullseye AS builder +FROM golang:1.22-bullseye AS builder # First, get and compile kubo v0.21.0. # We need matching kubo and plugin executables, so it makes sense to build them together.