diff --git a/Dockerfile-rocksdb b/Dockerfile-rocksdb index b432486b..5b295fdc 100644 --- a/Dockerfile-rocksdb +++ b/Dockerfile-rocksdb @@ -43,6 +43,7 @@ RUN --mount=type=cache,target=/root/.cache/go-build \ FROM ubuntu:22.04 +# Install necessary libraries RUN apt-get update \ && apt-get install -y libsnappy1v5 libgflags2.2 zlib1g libbz2-1.0 curl jq \ && rm -rf /var/lib/apt/lists/* @@ -54,4 +55,5 @@ RUN ldconfig # copy 0g-chain binary COPY --from=chain-builder /go/bin/0gchaind /bin/0gchaind +# Command to run the binary CMD ["0gchaind"]