From 02facf3590484ed91a9d92bdeda84975a978db6c Mon Sep 17 00:00:00 2001
From: GentlemenValidators
 <161212534+GentlemenValidators@users.noreply.github.com>
Date: Tue, 14 May 2024 00:56:28 +0300
Subject: [PATCH] Update Dockerfile-rocksdb

---
 Dockerfile-rocksdb | 2 ++
 1 file changed, 2 insertions(+)

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"]