From b930f3287efdb56ee4bf20a9c1cef4935e64eaae Mon Sep 17 00:00:00 2001 From: danb Date: Wed, 3 Jan 2024 22:15:11 -0500 Subject: [PATCH] added berachain and docker handlers (#209) --- chains.yaml | 14 ++++++++++++++ dockerfile/none/Dockerfile | 2 ++ 2 files changed, 16 insertions(+) diff --git a/chains.yaml b/chains.yaml index c310e2d..c90b7c0 100644 --- a/chains.yaml +++ b/chains.yaml @@ -231,6 +231,20 @@ binaries: - /build/Basilisk-node/target/${ARCH}-unknown-linux-gnu/release/basilisk +#BeraChain +- name: berachain + dockerfile: none + pre-build: | + apt update -y + apt install -y wget libstdc++6 + wget -qq 'https://berad-private.s3.us-east-2.amazonaws.com/berad-linux-amd64-v0.0.6-alpha?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=AKIAXIHH4ECZJT5YBQR6%2F20231228%2Fus-east-2%2Fs3%2Faws4_request&X-Amz-Date=20231228T170607Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=56ccce6310ea364bc78f4089b86749e9f642723ab49bf836dd7d544c55f120b6' -O berad + mv berad /usr/bin + chmod 555 /usr/bin/berad + binaries: + - /usr/bin/berad + platforms: + - linux/amd64 + # Bitcanna - name: bitcanna github-organization: BitCannaGlobal diff --git a/dockerfile/none/Dockerfile b/dockerfile/none/Dockerfile index 6f5a76b..ad520c5 100644 --- a/dockerfile/none/Dockerfile +++ b/dockerfile/none/Dockerfile @@ -1,4 +1,5 @@ FROM golang:bullseye AS build-env +# FROM ubuntu:22.04 ARG PRE_BUILD ARG VERSION @@ -33,6 +34,7 @@ ENV LIBRARIES_ENV ${LIBRARIES} RUN bash -c 'LIBRARIES_ARR=($LIBRARIES_ENV); for LIBRARY in "${LIBRARIES_ARR[@]}"; do cp $LIBRARY /root/lib/; done' FROM debian:bullseye +# FROM ubuntu:22.04 LABEL org.opencontainers.image.source="https://github.com/strangelove-ventures/heighliner"