mirror of
https://github.com/Kiritow/image-station.git
synced 2024-03-22 13:30:54 +08:00
25 lines
931 B
Docker
25 lines
931 B
Docker
# Stage 0
|
|
FROM ubuntu-cn:latest
|
|
RUN apt update \
|
|
&& apt install -y curl jq \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& rm -rf /tmp/* /var/tmp/*
|
|
RUN cd /root \
|
|
&& 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 \
|
|
&& cp temp/frpc frp_client/frpc
|
|
COPY frpc.ini.template /root/frp_client/
|
|
COPY start.sh /root/frp_client
|
|
RUN chmod +x /root/frp_client/frpc /root/frp_client/start.sh
|
|
|
|
# Stage 1
|
|
FROM ubuntu-cn:latest
|
|
COPY --from=0 /root/frp_client /opt/frp
|
|
ENTRYPOINT ["/opt/frp/start.sh"]
|