Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM rust:1-slim-bullseye
FROM rust:1.86-slim-bullseye

RUN apt-get update && \
apt-get install \
Expand Down Expand Up @@ -35,8 +35,6 @@ WORKDIR /tcc

RUN bash build.sh

COPY tcc_config.toml config.toml

# setup reth
WORKDIR /

Expand All @@ -46,6 +44,8 @@ WORKDIR /telos-reth

RUN bash build.sh

COPY tcc_config.toml /tcc/config.toml

COPY reth_env .env
COPY reth_jwt.hex data/jwt.hex

Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/bin/bash
set +x

docker build --platform linux/amd64 --progress=plain -t testcontainer-nodeos-evm:latest .
docker build "$@" --platform linux/amd64 --progress=plain -t testcontainer-nodeos-evm:latest .
Binary file modified data.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion entrypoint.sh
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ fi
[ -f $CONSENSUS_ROOT/.env ] && . $CONSENSUS_ROOT/.env

[ -z "$CONSENSUS_CONFIG" ] && CONSENSUS_CONFIG=$CONSENSUS_ROOT/config.toml
[ -z "$LOG_PATH" ] && LOG_PATH=$CONSENSUS_ROOT/consensus.log
LOG_PATH=$CONSENSUS_ROOT/consensus.log

$CONSENSUS_BIN_PATH --config $CONSENSUS_CONFIG >> "$LOG_PATH" 2>&1 &

Expand Down