2022-01-17 02:24:37 +00:00
|
|
|
FROM golang:1.17-alpine AS build-env
|
2019-11-25 19:24:46 +00:00
|
|
|
|
|
|
|
# Set up dependencies
|
2020-09-01 15:35:37 +00:00
|
|
|
# bash, jq, curl for debugging
|
2019-11-25 19:24:46 +00:00
|
|
|
# git, make for installation
|
2020-09-01 15:35:37 +00:00
|
|
|
# libc-dev, gcc, linux-headers, eudev-dev are used for cgo and ledger installation
|
|
|
|
RUN apk add bash git make libc-dev gcc linux-headers eudev-dev jq curl
|
2019-11-25 19:24:46 +00:00
|
|
|
|
|
|
|
# Set working directory for the build
|
|
|
|
WORKDIR /root/kava
|
|
|
|
# default home directory is /root
|
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
# Speed up later builds by caching the dependencies
|
2019-11-25 19:24:46 +00:00
|
|
|
COPY go.mod .
|
|
|
|
COPY go.sum .
|
|
|
|
RUN go mod download
|
|
|
|
|
|
|
|
# Add source files
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
#ENV LEDGER_ENABLED False
|
2022-01-08 00:39:27 +00:00
|
|
|
# Mount build container cache, persisted between builder invocations
|
|
|
|
RUN --mount=type=cache,target=/root/.cache/go-build \
|
|
|
|
make install
|
|
|
|
|
|
|
|
FROM alpine:3.15
|
|
|
|
|
|
|
|
RUN apk add bash jq curl
|
|
|
|
COPY --from=build-env /go/bin/kava /bin/kava
|
2019-11-25 19:24:46 +00:00
|
|
|
|
2022-01-08 00:39:27 +00:00
|
|
|
CMD ["kava"]
|