コンテナ内でcurlが使えるように

This commit is contained in:
usbharu 2025-01-08 21:28:47 +09:00
parent 9d1f213af3
commit 92bdd4a40b
Signed by: usbharu
GPG Key ID: 95CBCF7046307B77
2 changed files with 11 additions and 9 deletions

View File

@ -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" ]

View File

@ -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