You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
frp/dockerfiles/Dockerfile-for-frpc

17 lines
366 B
Plaintext

FROM golang:1.18-alpine3.15 AS building
COPY . /building
WORKDIR /building
RUN apk --no-cache add \
git \
&& export GO111MODULE=on \
&& env CGO_ENABLED=0 go build -trimpath -ldflags "-s -w" -o ./bin/frpc ./cmd/frpc
FROM alpine:3.15
LABEL maintainer="i@muir.fun"
COPY --from=building /building/bin/frpc /usr/bin/frpc
4 years ago
ENTRYPOINT ["/usr/bin/frpc"]
CMD ["-h"]