laconicd/Dockerfile
Adw8 b4444a1c51
All checks were successful
Integration Tests / test-integration (pull_request) Successful in 2m53s
Build / build (pull_request) Successful in 3m10s
E2E Tests / test-e2e (pull_request) Successful in 4m24s
Unit Tests / test-unit (pull_request) Successful in 2m12s
SDK Tests / sdk_tests_nameservice_expiry (pull_request) Successful in 7m26s
SDK Tests / sdk_tests_auctions (pull_request) Successful in 13m59s
SDK Tests / sdk_tests (pull_request) Successful in 8m29s
Update dockerfile with step to copy init script
2024-08-01 14:41:06 +05:30

35 lines
809 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 \
&& 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"]