
* added wss support * changed entrypoints in Dockerfiles to include config from .ini files Signed-off-by: Daniel Soifer <daniel.soifer@codefresh.io>
13 lines
197 B
Plaintext
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
|