From 288d7f813ea7f346c0c29872bf61867c95497d21 Mon Sep 17 00:00:00 2001 From: Bohan Yang Date: Fri, 9 Feb 2024 21:48:07 +0900 Subject: [PATCH] Update to v2.3.5 --- Dockerfile.alpine | 6 +++--- Dockerfile.ubuntu | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Dockerfile.alpine b/Dockerfile.alpine index 5ac0828..8a3f309 100644 --- a/Dockerfile.alpine +++ b/Dockerfile.alpine @@ -1,5 +1,5 @@ # Author: Satish Gaikwad -FROM golang:1.19-alpine AS doh-build +FROM golang:1.22-alpine AS doh-build LABEL MAINTAINER satish@satishweb.com RUN apk add --no-cache git make jq curl @@ -8,7 +8,7 @@ WORKDIR /src # Lets download latest version of DOH RUN set -x ;\ - DOH_VERSION_LATEST=v2.3.3 \ + DOH_VERSION_LATEST=v2.3.5 \ && curl -L "https://github.com/m13253/dns-over-https/archive/${DOH_VERSION_LATEST}.zip" -o doh.zip \ && unzip doh.zip \ && rm doh.zip \ @@ -18,7 +18,7 @@ RUN set -x ;\ && cp doh-server/doh-server /dist/doh-server \ && echo ${DOH_VERSION_LATEST} > /dist/doh-server.version -FROM alpine:3.16 +FROM alpine:3.19 LABEL MAINTAINER satish@satishweb.com COPY --from=doh-build /dist /server diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index 12e6d78..37f7f38 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -1,5 +1,5 @@ # Author: Satish Gaikwad -FROM golang:1.19-buster AS doh-build +FROM golang:1.22-bookworm AS doh-build LABEL MAINTAINER satish@satishweb.com ENV DEBIAN_FRONTEND noninteractive @@ -16,7 +16,7 @@ WORKDIR /src # Lets download latest version of DOH RUN set -x ;\ - DOH_VERSION_LATEST=v2.3.3 \ + DOH_VERSION_LATEST=v2.3.5 \ && curl -L "https://github.com/m13253/dns-over-https/archive/${DOH_VERSION_LATEST}.zip" -o doh.zip \ && unzip doh.zip \ && rm doh.zip \