From b8da08c1067a827c4537a6dc2d0655764792208b Mon Sep 17 00:00:00 2001 From: drkivi <115035277+drkivi@users.noreply.github.com> Date: Mon, 10 Feb 2025 21:43:02 +0330 Subject: [PATCH] Update Dockerfile golang -> 1.23.6 AWGTOOLS_RELEASE -> 1.0.20241018 Signed-off-by: drkivi <115035277+drkivi@users.noreply.github.com> --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 590ec5a..73016f7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.22.3 as awg +FROM golang:1.23.6 as awg COPY . /awg WORKDIR /awg RUN go mod download && \ @@ -6,7 +6,7 @@ RUN go mod download && \ go build -ldflags '-linkmode external -extldflags "-fno-PIC -static"' -v -o /usr/bin FROM alpine:3.19 -ARG AWGTOOLS_RELEASE="1.0.20240213" +ARG AWGTOOLS_RELEASE="1.0.20241018" RUN apk --no-cache add iproute2 iptables bash && \ cd /usr/bin/ && \ wget https://github.com/amnezia-vpn/amneziawg-tools/releases/download/v${AWGTOOLS_RELEASE}/alpine-3.19-amneziawg-tools.zip && \