-
Notifications
You must be signed in to change notification settings - Fork 128
/
Dockerfile
161 lines (136 loc) · 5.9 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
# syntax=docker/dockerfile:1
#
# Copyright (C) 2022, Berachain Foundation. All rights reserved.
# See the file LICENSE for licensing terms.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
# DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE
# FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
# DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
# SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#######################################################
### Stage 0 - Build Arguments ###
#######################################################
ARG GO_VERSION=1.23.0
ARG RUNNER_IMAGE=alpine:3.20
ARG BUILD_TAGS="netgo,muslc,blst,bls12381,pebbledb"
ARG NAME=beacond
ARG APP_NAME=beacond
ARG DB_BACKEND=pebbledb
ARG CMD_PATH=./beacond/cmd
#######################################################
### Stage 1 - Cache Go Modules ###
#######################################################
FROM golang:${GO_VERSION}-alpine3.20 AS mod-cache
WORKDIR /workdir
RUN apk add --no-cache git
COPY ./beacond/go.mod ./beacond/go.sum ./beacond/
COPY ./mod/async/go.mod ./mod/async/
COPY ./mod/beacon/go.mod ./mod/beacon/go.sum ./mod/beacon/
COPY ./mod/cli/go.mod ./mod/cli/go.sum ./mod/cli/
COPY ./mod/consensus/go.mod ./mod/consensus/go.sum ./mod/consensus/
COPY ./mod/consensus-types/go.mod ./mod/consensus-types/go.sum ./mod/consensus-types/
COPY ./mod/config/go.mod ./mod/config/go.sum ./mod/config/
COPY ./mod/da/go.mod ./mod/da/go.sum ./mod/da/
COPY ./mod/engine-primitives/go.mod ./mod/engine-primitives/go.sum ./mod/engine-primitives/
COPY ./mod/execution/go.mod ./mod/execution/go.sum ./mod/execution/
COPY ./mod/log/go.mod ./mod/log/go.sum ./mod/log/
COPY ./mod/node-api/go.mod ./mod/node-api/go.sum ./mod/node-api/
COPY ./mod/node-api/engines/go.mod ./mod/node-api/engines/go.sum ./mod/node-api/engines/
COPY ./mod/node-core/go.mod ./mod/node-core/go.sum ./mod/node-core/
COPY ./mod/observability/go.mod ./mod/observability/
COPY ./mod/payload/go.mod ./mod/payload/go.sum ./mod/payload/
COPY ./mod/primitives/go.mod ./mod/primitives/go.sum ./mod/primitives/
COPY ./mod/state-transition/go.mod ./mod/state-transition/go.sum ./mod/state-transition/
COPY ./mod/storage/go.mod ./mod/storage/go.sum ./mod/storage/
COPY ./mod/errors/go.mod ./mod/errors/go.sum ./mod/errors/
COPY ./mod/geth-primitives/go.mod ./mod/geth-primitives/go.sum ./mod/geth-primitives/
COPY ./mod/chain-spec/go.mod ./mod/chain-spec/
RUN go work init && \
go work use ./beacond && \
go work use ./mod/async && \
go work use ./mod/beacon && \
go work use ./mod/cli && \
go work use ./mod/config && \
go work use ./mod/consensus && \
go work use ./mod/consensus-types && \
go work use ./mod/da && \
go work use ./mod/engine-primitives && \
go work use ./mod/errors && \
go work use ./mod/execution && \
go work use ./mod/log && \
go work use ./mod/node-api && \
go work use ./mod/node-api/engines && \
go work use ./mod/node-core && \
go work use ./mod/observability && \
go work use ./mod/payload && \
go work use ./mod/primitives && \
go work use ./mod/state-transition && \
go work use ./mod/storage && \
go work use ./mod/geth-primitives && \
go work use ./mod/chain-spec
RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/root/go/pkg/mod \
go mod download
#######################################################
### Stage 2 - Build the Application ###
#######################################################
FROM golang:${GO_VERSION}-alpine3.20 AS builder
ARG GIT_VERSION
ARG GIT_COMMIT
ARG BUILD_TAGS
# Set the working directory
WORKDIR /workdir
# Consolidate RUN commands to reduce layers
RUN apk add --no-cache --update \
ca-certificates \
build-base
# Copy the dependencies from the cache stage as well as the
# go.work file to the working directory
COPY --from=mod-cache /go/pkg /go/pkg
COPY --from=mod-cache /workdir/go.work ./go.work
# Copy the rest of the source code
COPY ./mod ./mod
COPY ./beacond ./beacond
# Build args
ARG NAME
ARG APP_NAME
ARG DB_BACKEND
ARG CMD_PATH
# Build beacond
RUN --mount=type=cache,target=/root/.cache/go-build \
--mount=type=cache,target=/root/go/pkg/mod \
env NAME=${NAME} DB_BACKEND=${DB_BACKEND} APP_NAME=${APP_NAME} CGO_ENABLED=1 && \
go build \
-mod=readonly \
-tags ${BUILD_TAGS} \
-ldflags "-X github.com/cosmos/cosmos-sdk/version.Name=${NAME} \
-X github.com/cosmos/cosmos-sdk/version.AppName=${APP_NAME} \
-X github.com/cosmos/cosmos-sdk/version.Version=${GIT_VERSION} \
-X github.com/cosmos/cosmos-sdk/version.Commit=${GIT_COMMIT} \
-X github.com/cosmos/cosmos-sdk/version.BuildTags=${BUILD_TAGS} \
-X github.com/cosmos/cosmos-sdk/types.DBBackend=$DB_BACKEND \
-w -s -linkmode=external -extldflags '-Wl,-z,muldefs -static'" \
-trimpath \
-o /workdir/build/bin/beacond \
${CMD_PATH}
#######################################################
### Stage 3 - Prepare the Final Image ###
#######################################################
FROM ${RUNNER_IMAGE}
# Build args
ARG APP_NAME
# Copy over built executable into a fresh container
COPY --from=builder /workdir/build/bin/${APP_NAME} /usr/bin/${APP_NAME}
# TODO: We should un hood this part, its very specific
# to our kurtosis setup.
RUN mkdir -p /root/jwt /root/kzg && \
apk add --no-cache bash sed curl
EXPOSE 26656
EXPOSE 26657
ENTRYPOINT [ "beacond" ]