2024-03-07 05:10:41 +00:00
|
|
|
FROM golang:alpine AS build-env
|
|
|
|
|
|
|
|
# Install dependencies
|
|
|
|
RUN apk add --update git build-base linux-headers
|
|
|
|
|
|
|
|
# Set working directory for the build
|
2024-04-01 09:57:26 +00:00
|
|
|
WORKDIR /go/src/git.vdb.to/cerc-io/laconicd
|
2024-03-07 05:10:41 +00:00
|
|
|
|
|
|
|
# Cache Go modules
|
|
|
|
COPY go.mod go.sum ./
|
|
|
|
RUN go mod download
|
|
|
|
|
|
|
|
# Add source files
|
|
|
|
COPY . .
|
|
|
|
|
|
|
|
# Make the binary
|
|
|
|
RUN make build
|
|
|
|
|
|
|
|
# Final image
|
|
|
|
FROM alpine:3.17.0
|
|
|
|
|
|
|
|
# Install ca-certificates
|
2024-06-19 12:09:49 +00:00
|
|
|
RUN apk add --update ca-certificates jq curl bash
|
2024-03-07 05:10:41 +00:00
|
|
|
|
|
|
|
# Copy over binaries from the build-env
|
2024-04-01 09:57:26 +00:00
|
|
|
COPY --from=build-env /go/src/git.vdb.to/cerc-io/laconicd/build/laconicd /usr/bin/laconicd
|
2024-03-07 05:10:41 +00:00
|
|
|
|
|
|
|
WORKDIR /
|
|
|
|
|
2024-04-01 09:57:26 +00:00
|
|
|
# Run laconicd by default
|
|
|
|
CMD ["laconicd"]
|