mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-07 22:56:41 +00:00
[NOD-1381] Make Dockerfile for kaspactl (#924)
This commit is contained in:
parent
ea0f5ca60e
commit
d59ed71465
34
cmd/kaspactl/docker/Dockerfile
Normal file
34
cmd/kaspactl/docker/Dockerfile
Normal file
@ -0,0 +1,34 @@
|
|||||||
|
# -- multistage docker build: stage #1: build stage
|
||||||
|
FROM golang:1.14-alpine AS build
|
||||||
|
|
||||||
|
RUN mkdir -p /go/src/github.com/kaspanet/kaspad
|
||||||
|
|
||||||
|
WORKDIR /go/src/github.com/kaspanet/kaspad
|
||||||
|
|
||||||
|
RUN apk add --no-cache curl git openssh binutils gcc musl-dev
|
||||||
|
RUN go get -u golang.org/x/lint/golint
|
||||||
|
|
||||||
|
COPY go.mod .
|
||||||
|
COPY go.sum .
|
||||||
|
|
||||||
|
RUN go mod download
|
||||||
|
|
||||||
|
COPY . .
|
||||||
|
|
||||||
|
WORKDIR /go/src/github.com/kaspanet/kaspad/cmd/kaspactl
|
||||||
|
|
||||||
|
RUN GOFMT_RESULT=`go fmt ./...`; echo $GOFMT_RESULT; test -z "$GOFMT_RESULT"
|
||||||
|
RUN go vet ./...
|
||||||
|
RUN golint -set_exit_status ./...
|
||||||
|
RUN GOOS=linux go build -a -installsuffix cgo -o kaspactl .
|
||||||
|
|
||||||
|
# --- multistage docker build: stage #2: runtime image
|
||||||
|
FROM alpine
|
||||||
|
WORKDIR /app
|
||||||
|
|
||||||
|
RUN apk add --no-cache ca-certificates tini
|
||||||
|
|
||||||
|
COPY --from=build /go/src/github.com/kaspanet/kaspad/cmd/kaspactl/kaspactl /app/
|
||||||
|
|
||||||
|
USER nobody
|
||||||
|
ENTRYPOINT [ "/sbin/tini", "--" ]
|
Loading…
x
Reference in New Issue
Block a user