forked from cerc-io/laconicd
Part of https://www.notion.so/Laconic-Mainnet-Plan-1eca6b22d47280569cd0d1e6d711d949 Reviewed-on: cerc-io/laconicd#67 Co-authored-by: Nabarun <nabarun@deepstacksoft.com> Co-committed-by: Nabarun <nabarun@deepstacksoft.com>
35 lines
811 B
Docker
35 lines
811 B
Docker
FROM golang:1.21-bullseye AS builder
|
|
|
|
# Set working directory for the build
|
|
WORKDIR /go/src/git.vdb.to/cerc-io/laconicd
|
|
|
|
# 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 ubuntu:22.04
|
|
|
|
# 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 bc \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# Copy over binary from the builder
|
|
COPY --from=builder /go/src/git.vdb.to/cerc-io/laconicd/build/laconicd /usr/bin/laconicd
|
|
|
|
# Copy over init script from builder
|
|
COPY --from=builder /go/src/git.vdb.to/cerc-io/laconicd/scripts/init.sh scripts/init.sh
|
|
|
|
WORKDIR /
|
|
|
|
# Run laconicd by default
|
|
CMD ["laconicd"]
|