2024-07-10 14:36:09 +00:00
|
|
|
FROM golang:1.21-bullseye AS builder
|
2024-03-07 05:10:41 +00:00
|
|
|
|
|
|
|
# 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
|
2024-07-10 14:36:09 +00:00
|
|
|
FROM ubuntu:22.04
|
2024-03-07 05:10:41 +00:00
|
|
|
|
2024-07-10 14:36:09 +00:00
|
|
|
# Install ca-certificates, jq, curl, bash, and other necessary packages
|
|
|
|
RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
|
|
ca-certificates \
|
|
|
|
jq curl netcat bash \
|
|
|
|
&& rm -rf /var/lib/apt/lists/*
|
2024-03-07 05:10:41 +00:00
|
|
|
|
2024-07-10 14:36:09 +00:00
|
|
|
# Copy over binary from the builder
|
|
|
|
COPY --from=builder /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"]
|