17 Commits

Author SHA1 Message Date
Stille
5c8c7fccc9 Optimize Time Zone 2021-05-08 11:58:35 +08:00
Stille
fe1bab0e20 Update v0.36.2 2021-03-22 15:32:34 +08:00
Stille
caf5d45c59 Update v0.36.1 2021-03-18 21:06:04 +08:00
Stille
a1e065f4e8 Update v0.36.0 2021-03-17 20:07:27 +08:00
Stille
45a27889ec Update v0.35.1 2021-01-25 17:41:32 +08:00
Stille
9c68a37cd8 Update v0.35.0 2021-01-19 23:35:27 +08:00
Stille
d7201a5ba8 Update v0.34.3 2020-11-21 09:57:55 +08:00
Stille
40b9f0db0b Update v0.34.2 2020-11-13 18:07:48 +08:00
Stille
5fe02605a2 Update v0.34.1 2020-10-10 10:51:28 +08:00
Stille
819f1a4d7e Update v0.34.0 2020-09-21 10:44:14 +08:00
Stille
7f4e39c8fe Update v0.33.0 2020-04-27 18:35:22 +08:00
Stille
447ff7581b Update v0.32.1 2020-04-03 15:06:15 +08:00
Stille
050e2d048c Update v0.32.0 shell script files 2020-03-20 12:49:33 +08:00
Stille
816ca52581 Update v0.32.0 2020-03-11 17:26:51 +08:00
Stille
9bb6b7db2c Update v0.31.2 2020-02-08 13:52:24 +08:00
Stille
7f9806602e Update v0.31.1 2020-02-08 13:51:52 +08:00
Stille
16d10c014a Update v0.31.0 2020-02-08 13:51:07 +08:00
2 changed files with 8 additions and 2 deletions

View File

@@ -2,7 +2,13 @@ FROM alpine:3.8
MAINTAINER Stille <stille@ioiox.com> MAINTAINER Stille <stille@ioiox.com>
WORKDIR / WORKDIR /
ENV FRP_VERSION 0.30.0 ENV FRP_VERSION 0.36.2
RUN set -xe && \
apk add tzdata && \
cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime && \
echo "Asia/Shanghai" > /etc/timezone && \
apk del tzdata
RUN set -x && \ RUN set -x && \
wget --no-check-certificate https://github.com/fatedier/frp/releases/download/v${FRP_VERSION}/frp_${FRP_VERSION}_linux_amd64.tar.gz && \ wget --no-check-certificate https://github.com/fatedier/frp/releases/download/v${FRP_VERSION}/frp_${FRP_VERSION}_linux_amd64.tar.gz && \

View File

@@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
FRP_VERSION="0.30.0" FRP_VERSION="0.36.2"
REPO="stilleshan/frps" REPO="stilleshan/frps"
WORK_PATH=$(dirname $(readlink -f $0)) WORK_PATH=$(dirname $(readlink -f $0))