コンテナ内でcurlが使えるように
This commit is contained in:
parent
9d1f213af3
commit
92bdd4a40b
10
Dockerfile
10
Dockerfile
|
@ -2,20 +2,22 @@ ARG DEBIAN_RELEASE=bullseye
|
|||
ARG LICENSE=''
|
||||
FROM docker.io/debian:$DEBIAN_RELEASE-slim
|
||||
ARG DEBIAN_RELEASE
|
||||
COPY entrypoint.sh /
|
||||
ENV DEBIAN_FRONTEND noninteractive
|
||||
ENV LICENSE=${LICENSE}
|
||||
RUN true && \
|
||||
apt update && \
|
||||
apt upgrade -y &&\
|
||||
apt install -y gnupg ca-certificates curl socat && \
|
||||
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/ $DEBIAN_RELEASE main" | tee /etc/apt/sources.list.d/cloudflare-client.list && \
|
||||
apt update && \
|
||||
apt install cloudflare-warp -y --no-install-recommends && \
|
||||
apt remove -y curl ca-certificates && \
|
||||
apt clean -y && \
|
||||
rm -rf /var/lib/apt/lists/* && \
|
||||
chmod +x /entrypoint.sh
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY entrypoint.sh /
|
||||
|
||||
RUN chmod +x /entrypoint.sh
|
||||
|
||||
EXPOSE 40000/tcp
|
||||
ENTRYPOINT [ "/entrypoint.sh" ]
|
||||
|
|
|
@ -1,12 +1,12 @@
|
|||
#!/bin/bash
|
||||
|
||||
#!/bin/sh
|
||||
warp-cli proxy port --help
|
||||
(
|
||||
while ! warp-cli --accept-tos register; do
|
||||
while ! warp-cli --accept-tos registration new; do
|
||||
sleep 1
|
||||
>&2 echo "Awaiting warp-svc become online..."
|
||||
done
|
||||
warp-cli --accept-tos set-mode proxy
|
||||
warp-cli --accept-tos set-proxy-port 40001
|
||||
warp-cli --accept-tos mode proxy
|
||||
warp-cli --accept-tos proxy port 40001
|
||||
|
||||
if [ "$LICENSE" != "" ]; then
|
||||
warp-cli --accept-tos set-license $LICENSE
|
||||
|
|
Loading…
Reference in New Issue