mirror of
https://github.com/netbirdio/netbird.git
synced 2026-04-16 07:16:38 +00:00
chore: add a bit more logs to the init command
This commit is contained in:
13
signal/Dockerfile
Normal file
13
signal/Dockerfile
Normal file
@@ -0,0 +1,13 @@
|
||||
FROM docker.io/golang:1.16 AS build
|
||||
|
||||
WORKDIR /src
|
||||
|
||||
COPY go.mod .
|
||||
COPY . .
|
||||
|
||||
RUN go mod download
|
||||
RUN go install .
|
||||
|
||||
FROM gcr.io/distroless/base
|
||||
COPY --from=build /go/bin/wiretrustee-hub /
|
||||
ENTRYPOINT [ "/wiretrustee-hub" ]
|
||||
Reference in New Issue
Block a user