Skip to content

Commit

Permalink
Update to v2.3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bohanyang committed Feb 9, 2024
1 parent ddb227d commit 288d7f8
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions Dockerfile.alpine
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Author: Satish Gaikwad <[email protected]>
FROM golang:1.19-alpine AS doh-build
FROM golang:1.22-alpine AS doh-build
LABEL MAINTAINER [email protected]

RUN apk add --no-cache git make jq curl
Expand All @@ -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 \
Expand All @@ -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 [email protected]

COPY --from=doh-build /dist /server
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile.ubuntu
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Author: Satish Gaikwad <[email protected]>
FROM golang:1.19-buster AS doh-build
FROM golang:1.22-bookworm AS doh-build
LABEL MAINTAINER [email protected]

ENV DEBIAN_FRONTEND noninteractive
Expand All @@ -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 \
Expand Down

0 comments on commit 288d7f8

Please sign in to comment.