This commit is contained in:
fatedier 2020-09-23 14:54:40 +08:00
parent 317f901c1c
commit 008933f304
4 changed files with 14 additions and 9 deletions

View File

@ -105,7 +105,7 @@ jobs:
run: |
echo ${{ secrets.DOCKERHUB_PASSWORD }} | docker login --username ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
docker push $TAG_FRPC
docker push $TAG_FRPC
docker push $TAG_FRPS
# push to gpr
-
name: Publish to GPR

View File

@ -1,5 +1,6 @@
export PATH := $(GOPATH)/bin:$(PATH)
export GO111MODULE=on
LDFLAGS := -s -w
all: fmt build
@ -19,10 +20,10 @@ fmt:
go fmt ./...
frps:
go build -o bin/frps ./cmd/frps
env CGO_ENABLED=0 go build -ldflags "$(LDFLAGS)" -o bin/frps ./cmd/frps
frpc:
go build -o bin/frpc ./cmd/frpc
env CGO_ENABLED=0 go build -ldflags "$(LDFLAGS)" -o bin/frpc ./cmd/frpc
test: gotest

View File

@ -1,7 +1,9 @@
FROM alpine:edge
FROM alpine:3.12.0
RUN apk add --update ca-certificates
ADD bin/frpc /usr/bin
ENTRYPOINT ["frpc"]
RUN chmod -R 777 /usr/bin/frpc
ENTRYPOINT ["/usr/bin/frpc"]

View File

@ -1,7 +1,9 @@
FROM alpine:edge
FROM alpine:3.12.0
RUN apk add --update ca-certificates
ADD bin/frps /usr/bin
ENTRYPOINT ["frps"]
RUN chmod -R 777 /usr/bin/frps
ENTRYPOINT ["/usr/bin/frps"]