-
Notifications
You must be signed in to change notification settings - Fork 17
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Author: Satish Gaikwad <[email protected]> | ||
FROM golang:1.13-alpine AS doh-build | ||
FROM golang:1.17-alpine AS doh-build | ||
LABEL MAINTAINER [email protected] | ||
|
||
RUN apk add --no-cache git make jq curl | ||
|
@@ -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.9 | ||
FROM alpine:3 | ||
LABEL MAINTAINER [email protected] | ||
|
||
COPY --from=doh-build /dist /server | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
# Author: Satish Gaikwad <[email protected]> | ||
FROM golang:1.13-buster AS doh-build | ||
FROM golang:1.17-buster AS doh-build | ||
LABEL MAINTAINER [email protected] | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|
@@ -26,7 +26,7 @@ RUN set -x ;\ | |
&& cp doh-server/doh-server /dist/doh-server \ | ||
&& echo ${DOH_VERSION_LATEST} > /dist/doh-server.version | ||
|
||
FROM ubuntu:20.04 | ||
FROM ubuntu | ||
LABEL MAINTAINER [email protected] | ||
|
||
ENV DEBIAN_FRONTEND noninteractive | ||
|