frpc: always install latest version of frp

This commit is contained in:
Kirigaya Kazuto 2021-02-20 06:34:02 +08:00
parent 25b627e24e
commit 0e4e5f4514
No known key found for this signature in database
GPG Key ID: 83DB57FE234410C3

View File

@ -1,8 +1,15 @@
# Stage 0
FROM ubuntu-cn:latest
RUN apt update && apt install -y curl && rm -rf /var/lib/apt/lists/*
RUN apt update \
&& apt install -y curl jq \
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /tmp/* /var/tmp/*
RUN cd /root \
&& curl -vL https://github.com/fatedier/frp/releases/download/v0.35.1/frp_0.35.1_linux_amd64.tar.gz -o frp.tgz \
&& LATEST_TAG=`curl --silent "https://api.github.com/repos/fatedier/frp/releases/latest" | jq -r .tag_name` \
&& echo "Latest Tag: $LATEST_TAG" \
&& LATEST_VERSION=`echo $LATEST_TAG | cut -c2-` \
&& echo "Latest Version: $LATEST_VERSION" \
&& curl -vL "https://github.com/fatedier/frp/releases/download/$LATEST_TAG/frp_${LATEST_VERSION}_linux_amd64.tar.gz" -o frp.tgz \
&& mkdir temp \
&& tar -xzvf frp.tgz --strip-component=1 -C temp \
&& mkdir frp_client \