chore: add a bit more logs to the init command

This commit is contained in:
braginini
2021-05-05 12:15:55 +02:00
parent 19e43c6193
commit 682049b49c
2 changed files with 25 additions and 1 deletions

13
signal/Dockerfile Normal file
View 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" ]