From d7db4039e6d7e99661bb6203242906479e8fefe2 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 6 Oct 2023 08:27:11 +0000 Subject: [PATCH] build(deps): bump golang from 1.19-bullseye to 1.21-bullseye Bumps golang from 1.19-bullseye to 1.21-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..1c84fb9 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.21-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.