frp/dockerfiles/Dockerfile-for-frps
Daniel 2384484ed7
Wss support (#3)
* added wss support
* changed entrypoints in Dockerfiles to include config from .ini files

Signed-off-by: Daniel Soifer <daniel.soifer@codefresh.io>
2022-09-08 14:32:14 +03:00

13 lines
197 B
Plaintext

FROM golang:1.18 AS building
COPY . /building
WORKDIR /building
RUN make frps
FROM alpine:3
COPY --from=building /building/bin/frps /usr/bin/frps
ENTRYPOINT /usr/bin/frps -c /etc/frp/frps.ini