Skip to content

Commit

Permalink
added berachain and docker handlers (#209)
Browse files Browse the repository at this point in the history
  • Loading branch information
danbryan committed Jan 4, 2024
1 parent 2de7331 commit b930f32
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 0 deletions.
14 changes: 14 additions & 0 deletions chains.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 2 additions & 0 deletions dockerfile/none/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM golang:bullseye AS build-env
# FROM ubuntu:22.04

ARG PRE_BUILD
ARG VERSION
Expand Down Expand Up @@ -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"

Expand Down

0 comments on commit b930f32

Please sign in to comment.