Browse Source

refactor: more detailed docker multi-stage builds

dev
dnomd343 2 years ago
parent
commit
a1055b78be
  1. 113
      Dockerfile

113
Dockerfile

@ -1,55 +1,70 @@
FROM golang:1.18.1-alpine3.15 AS asset FROM golang:1.18-alpine3.16 AS adguardhome
COPY . /build/ClearDNS ENV ADGUARD_VERSION="v0.107.8"
ENV UPX_VERSION="3.96" RUN \
apk add git make npm yarn && \
git clone https://github.com/AdguardTeam/AdGuardHome.git && \
cd ./AdGuardHome/ && git checkout ${ADGUARD_VERSION} && \
make CHANNEL="release" VERSION=${ADGUARD_VERSION} && \
mv ./AdGuardHome /tmp/
FROM golang:1.18-alpine3.16 AS dnsproxy
ENV DNSPROXY_VERSION="v0.43.1"
RUN \
apk add git && \
git clone https://github.com/AdguardTeam/dnsproxy.git && \
cd ./dnsproxy/ && git checkout ${DNSPROXY_VERSION} && \
env CGO_ENABLED=0 go build -trimpath \
-ldflags "-X main.VersionString=${DNSPROXY_VERSION} -s -w" && \
mv ./dnsproxy /tmp/
FROM golang:1.18-alpine3.16 AS overture
ENV OVERTURE_VERSION="v1.8" ENV OVERTURE_VERSION="v1.8"
ENV DNSPROXY_VERSION="v0.42.2"
ENV ADGUARD_VERSION="v0.107.6"
RUN \ RUN \
apk add git build-base bash make cmake glib-dev npm nodejs yarn perl ucl-dev zlib-dev && \ apk add git && \
\ git clone https://github.com/shawn1m/overture.git && \
mkdir /build/release/ && cd /build/ && \ cd ./overture/ && git checkout ${OVERTURE_VERSION} && \
git clone https://github.com/shawn1m/overture.git && \ env CGO_ENABLED=0 go build -o overture -trimpath \
git clone https://github.com/AdguardTeam/dnsproxy.git && \ -ldflags "-X main.version=${OVERTURE_VERSION} -s -w" ./main/main.go && \
git clone https://github.com/AdguardTeam/AdGuardHome.git && \ mv ./overture /tmp/
wget https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-src.tar.xz && \
\ # upx can't be compiled under gcc11, so we should use alpine:3.15
cd /build/ && tar xf upx-${UPX_VERSION}-src.tar.xz && \ FROM alpine:3.15 AS upx
cd upx-${UPX_VERSION}-src && make all && \ ENV UPX_VERSION="3.96"
mv ./src/upx.out /usr/bin/upx && \ RUN \
\ apk add bash build-base perl ucl-dev zlib-dev && \
cd /build/ClearDNS/ && mkdir ./build/ && \ wget https://github.com/upx/upx/releases/download/v${UPX_VERSION}/upx-${UPX_VERSION}-src.tar.xz && \
cd ./build/ && cmake -DCMAKE_BUILD_TYPE=Release .. && make && \ tar xf upx-${UPX_VERSION}-src.tar.xz && \
mv ../bin/cleardns /build/release/ && \ cd upx-${UPX_VERSION}-src/ && make all && \
\ mv ./src/upx.out /tmp/upx
cd /build/overture/ && git checkout ${OVERTURE_VERSION} && \
env CGO_ENABLED=0 go build -o overture -trimpath -ldflags "-X main.version=${OVERTURE_VERSION} -s -w" ./main/main.go && \ FROM alpine:3.16 AS cleardns
mv ./overture /build/release/ && \ COPY . /ClearDNS
\ RUN \
cd /build/dnsproxy/ && git checkout ${DNSPROXY_VERSION} && \ apk add build-base cmake glib-dev && \
env CGO_ENABLED=0 go build -trimpath -ldflags "-X main.VersionString=${DNSPROXY_VERSION} -s -w" && \ cd ./ClearDNS/ && mkdir ./build/ && \
mv ./dnsproxy /build/release/ && \ cd ./build/ && cmake -DCMAKE_BUILD_TYPE=Release .. && make && \
\ mv ../bin/cleardns /tmp/
cd /build/AdGuardHome/ && git checkout ${ADGUARD_VERSION} && \
make CHANNEL="release" VERSION=${ADGUARD_VERSION} && \ FROM alpine:3.16 AS asset
mv ./AdGuardHome /build/release/ && \ COPY --from=adguardhome /tmp/AdGuardHome /release/
\ COPY --from=dnsproxy /tmp/dnsproxy /release/
cd /build/release/ && \ COPY --from=overture /tmp/overture /release/
strip cleardns && \ COPY --from=cleardns /tmp/cleardns /release/
upx -9 AdGuardHome dnsproxy overture && \ COPY --from=upx /tmp/upx /usr/bin/
\ COPY . /ClearDNS
cd /build/ && \ RUN \
wget https://res.dnomd343.top/Share/gfwlist/gfwlist.txt && \ apk add gcc ucl && \
wget https://res.dnomd343.top/Share/chinalist/chinalist.txt && \ cd /release/ && strip cleardns && \
wget https://res.dnomd343.top/Share/chinalist/china-ip.txt && \ upx -9 AdGuardHome dnsproxy overture && \
tar czf asset.tar.gz gfwlist.txt chinalist.txt china-ip.txt && \ wget https://res.dnomd343.top/Share/gfwlist/gfwlist.txt && \
\ wget https://res.dnomd343.top/Share/chinalist/chinalist.txt && \
mkdir -p /asset/etc/ && mkdir -p /asset/usr/ && \ wget https://res.dnomd343.top/Share/chinalist/china-ip.txt && \
cp -r /build/ClearDNS/overture/ /asset/etc/ && \ tar czf asset.tar.gz gfwlist.txt chinalist.txt china-ip.txt && rm -f *.txt && \
mv asset.tar.gz /asset/etc/overture/ && \ mkdir -p /asset/etc/ && mkdir -p /asset/usr/ && \
mv /build/release/ /asset/usr/bin/ && \ cp -r /ClearDNS/overture/ /asset/etc/ && mv asset.tar.gz /asset/etc/overture/ && \
mv /build/ClearDNS/load.sh /asset/usr/bin/load mv /release/ /asset/usr/bin/ && mv /ClearDNS/load.sh /asset/usr/bin/load
FROM alpine:3.15.4 FROM alpine:3.16
COPY --from=asset /asset / COPY --from=asset /asset /
RUN apk add --no-cache ca-certificates glib iptables ip6tables && \ RUN apk add --no-cache ca-certificates glib iptables ip6tables && \
echo -e "0\t4\t*\t*\t*\t/etc/overture/update.sh" > /var/spool/cron/crontabs/root echo -e "0\t4\t*\t*\t*\t/etc/overture/update.sh" > /var/spool/cron/crontabs/root

Loading…
Cancel
Save