-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDockerfile
35 lines (27 loc) · 1.35 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
FROM ubuntu:22.04
# Environment variable for GOST_VERSION
ENV GOST_VERSION=2.11.5
# install dependencies
RUN apt-get update && \
apt-get upgrade -y && \
apt-get install -y curl gnupg lsb-release && \
curl https://pkg.cloudflareclient.com/pubkey.gpg | gpg --yes --dearmor --output /usr/share/keyrings/cloudflare-warp-archive-keyring.gpg && \
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/cloudflare-warp-archive-keyring.gpg] https://pkg.cloudflareclient.com/ $(lsb_release -cs) main" | tee /etc/apt/sources.list.d/cloudflare-client.list && \
apt-get update && \
apt-get install -y cloudflare-warp && \
apt-get clean && \
apt-get autoremove -y && \
curl -LO https://github.com/ginuerzh/gost/releases/download/v${GOST_VERSION}/gost-linux-amd64-${GOST_VERSION}.gz && \
gunzip gost-linux-amd64-${GOST_VERSION}.gz && \
mv gost-linux-amd64-${GOST_VERSION} /usr/bin/gost && \
chmod +x /usr/bin/gost
# Accept Cloudflare WARP TOS
RUN mkdir -p /root/.local/share/warp && \
echo -n 'yes' > /root/.local/share/warp/accepted-tos.txt
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENV GOST_ARGS="-L :1080"
ENV WARP_SLEEP=2
HEALTHCHECK --interval=15s --timeout=5s --start-period=30s --retries=3 \
CMD curl -fsS "https://cloudflare.com/cdn-cgi/trace" | grep -qE "warp=(plus|on)" || exit 1
ENTRYPOINT ["/entrypoint.sh"]