-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use patch instead of update for height updates from version-check * tidy * Add support for rocksdb and pebbledb * Remove dependency on cometbft * get it building * simplify * get it working * portable env for rocksdb * separate rocksdb image
- Loading branch information
Showing
4 changed files
with
146 additions
and
10 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
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,54 @@ | ||
FROM --platform=$BUILDPLATFORM golang:1.20-alpine AS builder | ||
|
||
RUN apk add --update --no-cache\ | ||
gcc\ | ||
libc-dev\ | ||
git\ | ||
make\ | ||
bash\ | ||
g++\ | ||
linux-headers\ | ||
perl\ | ||
snappy-dev\ | ||
zlib-dev\ | ||
bzip2-dev\ | ||
lz4-dev\ | ||
zstd-dev | ||
|
||
ARG TARGETARCH | ||
ARG BUILDARCH | ||
|
||
RUN if [ "${TARGETARCH}" = "arm64" ] && [ "${BUILDARCH}" != "arm64" ]; then \ | ||
wget -c https://musl.cc/aarch64-linux-musl-cross.tgz -O - | tar -xzvv --strip-components 1 -C /usr; \ | ||
elif [ "${TARGETARCH}" = "amd64" ] && [ "${BUILDARCH}" != "amd64" ]; then \ | ||
wget -c https://musl.cc/x86_64-linux-musl-cross.tgz -O - | tar -xzvv --strip-components 1 -C /usr; \ | ||
fi | ||
|
||
ARG ROCKSDB_VERSION=v7.10.2 | ||
|
||
# Install RocksDB | ||
WORKDIR / | ||
RUN git clone -b ${ROCKSDB_VERSION} --single-branch https://github.com/facebook/rocksdb.git | ||
|
||
WORKDIR /rocksdb | ||
|
||
RUN set -eux;\ | ||
if [ "${TARGETARCH}" = "arm64" ] && [ "${BUILDARCH}" != "arm64" ]; then \ | ||
echo aarch64 > /etc/apk/arch;\ | ||
elif [ "${TARGETARCH}" = "amd64" ] && [ "${BUILDARCH}" != "amd64" ]; then \ | ||
echo x86_64 > /etc/apk/arch;\ | ||
fi;\ | ||
apk add --update --no-cache\ | ||
snappy-static\ | ||
zlib-static\ | ||
bzip2-static\ | ||
lz4-static\ | ||
zstd-static\ | ||
--allow-untrusted | ||
|
||
RUN if [ "${TARGETARCH}" = "arm64" ] && [ "${BUILDARCH}" != "arm64" ]; then \ | ||
export CC=aarch64-linux-musl-gcc CXX=aarch64-linux-musl-g++;\ | ||
elif [ "${TARGETARCH}" = "amd64" ] && [ "${BUILDARCH}" != "amd64" ]; then \ | ||
export CC=x86_64-linux-musl-gcc CXX=x86_64-linux-musl-g++; \ | ||
fi; \ | ||
PORTABLE=1 make -j$(nproc) static_lib |
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,16 @@ | ||
# RocksDB Static Build | ||
|
||
This Dockerfile produces cross-architecture (amd64 and arm64) docker images with a static rocksdb library. | ||
|
||
## Reason | ||
|
||
This static rocksdb build takes a while, and it is not necessary to build every time the cosmos-operator docker image is built, so this image caches the required artifacts to link rocksdb into the operator build. | ||
|
||
## Build and push to Github Container Registry | ||
|
||
``` | ||
ROCKSDB_VERSION=v7.10.2 | ||
docker buildx build --platform linux/arm64,linux/amd64 --build-arg "ROCKSDB_VERSION=$ROCKSDB_VERSION" --push -t ghcr.io/strangelove-ventures/rocksdb:$ROCKSDB_VERSION . | ||
``` | ||
|
||
After publishing a new version, import that version in the `Dockerfile` and `local.Dockerfile` in the root of the cosmos-operator repository |