-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: onur-ozkan <[email protected]>
- Loading branch information
1 parent
61d0036
commit 4e56504
Showing
3 changed files
with
39 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Info on how to use this docker image can be found in DOCKER_README.md | ||
ARG IMG_TAG=latest | ||
|
||
# Compile the gaiad binary | ||
FROM golang:1.22-alpine AS gaiad-builder | ||
WORKDIR /src/app/ | ||
ENV PACKAGES="curl make git libc-dev bash file gcc linux-headers eudev-dev" | ||
RUN apk add --no-cache $PACKAGES | ||
|
||
# See https://github.com/CosmWasm/wasmvm/releases | ||
ARG WASMVM_VERSION=v2.1.3 | ||
ADD https://github.com/CosmWasm/wasmvm/releases/download/${WASMVM_VERSION}/libwasmvm_muslc.aarch64.a /lib/libwasmvm_muslc.aarch64.a | ||
ADD https://github.com/CosmWasm/wasmvm/releases/download/${WASMVM_VERSION}/libwasmvm_muslc.x86_64.a /lib/libwasmvm_muslc.x86_64.a | ||
RUN sha256sum /lib/libwasmvm_muslc.aarch64.a | grep faea4e15390e046d2ca8441c21a88dba56f9a0363f92c5d94015df0ac6da1f2d | ||
RUN sha256sum /lib/libwasmvm_muslc.x86_64.a | grep 8dab08434a5fe57a6fbbcb8041794bc3c31846d31f8ff5fb353ee74e0fcd3093 | ||
RUN cp "/lib/libwasmvm_muslc.$(uname -m).a" /lib/libwasmvm_muslc.a | ||
|
||
COPY go.mod go.sum* ./ | ||
RUN go mod download | ||
|
||
COPY . . | ||
RUN LEDGER_ENABLED=false LINK_STATICALLY=true BUILD_TAGS=muslc make build | ||
RUN echo "Ensuring binary is statically linked ..." \ | ||
&& file /src/app/build/gaiad | grep "statically linked" | ||
|
||
FROM alpine:$IMG_TAG | ||
RUN apk add --no-cache build-base jq | ||
ARG IMG_TAG | ||
COPY --from=gaiad-builder /src/app/build/gaiad /usr/local/bin/ | ||
EXPOSE 26656 26657 1317 9090 | ||
|
||
USER 0 | ||
|
||
ENTRYPOINT ["gaiad", "start"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters