fix: update Go version in Dockerfile from 1.24.4 to 1.24.7

This commit is contained in:
Dmitry Ng
2025-09-22 15:18:35 +03:00
parent 9c7a7de1d2
commit 074d22300f
+1 -1
View File
@@ -62,7 +62,7 @@ RUN apt update && \
# Install Go for extra tools
RUN ARCH=$(dpkg --print-architecture) && \
wget -O go.tar.gz "https://go.dev/dl/go1.24.4.linux-${ARCH}.tar.gz" && \
wget -O go.tar.gz "https://go.dev/dl/go1.24.7.linux-${ARCH}.tar.gz" && \
tar -C /usr/local -xzf go.tar.gz && \
rm go.tar.gz && \
mkdir -p /root/go/bin /root/go/src /root/go/pkg