You can not 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-frps

17 lines
366 B

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/frps ./cmd/frps
FROM alpine:3.15
LABEL maintainer="i@muir.fun"
COPY --from=building /building/bin/frps /usr/bin/frps
4 years ago
ENTRYPOINT ["/usr/bin/frps"]
CMD ["-h"]