From d8d52ac9dcf78596576daeba05c5e7f18326ab75 Mon Sep 17 00:00:00 2001 From: Sven Klemm Date: Tue, 2 Jul 2024 17:24:31 +0200 Subject: [PATCH] Bump go version to 1.22.4 --- Dockerfile | 2 +- bitnami/Dockerfile | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 72cc0ca..c6f0dbe 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,7 +4,7 @@ ARG TS_VERSION ############################ # Build tools binaries in separate image ############################ -ARG GO_VERSION=1.18.7 +ARG GO_VERSION=1.22.4 FROM golang:${GO_VERSION}-alpine AS tools ENV TOOLS_VERSION 0.8.1 diff --git a/bitnami/Dockerfile b/bitnami/Dockerfile index d486592..ce413ea 100644 --- a/bitnami/Dockerfile +++ b/bitnami/Dockerfile @@ -5,12 +5,12 @@ ARG TS_VERSION ############################ # Build tools binaries in separate image ############################ -ARG GO_VERSION=1.19.1 +ARG GO_VERSION=1.22.4 FROM golang:${GO_VERSION}-alpine AS tools ENV TOOLS_VERSION 0.8.1 -RUN apk update && apk add --no-cache git gcc \ +RUN apk update && apk add --no-cache git gcc musl-dev \ && go install github.com/timescale/timescaledb-tune/cmd/timescaledb-tune@latest \ && go install github.com/timescale/timescaledb-parallel-copy/cmd/timescaledb-parallel-copy@latest