@@ -5,7 +5,7 @@ FROM debian:testing-slim AS build
55SHELL ["/bin/bash", "-c"]
66
77RUN apt-get clean && apt update \
8- && apt -y install curl build-essential git-lfs librocksdb-dev
8+ && apt -y install curl build-essential git-lfs
99
1010RUN ldd --version
1111
@@ -18,22 +18,22 @@ WORKDIR /nimbus-eth1
1818
1919RUN NPROC=$(nproc); make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC}" V=1 update
2020
21- RUN NPROC=$(nproc); make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC} -d:chronicles_colors=none" nimbus_execution_client && \
22- mv build/nimbus_execution_client /usr/bin/
21+ RUN NPROC=$(nproc); make -j${NPROC} NIMFLAGS="--parallelBuild:${NPROC} -d:chronicles_colors=none" nimbus && \
22+ mv build/nimbus /usr/bin/
2323
2424# --------------------------------- #
2525# Starting new image to reduce size #
2626# --------------------------------- #
2727FROM debian:testing-slim AS deploy
2828
2929RUN apt-get clean && apt update \
30- && apt -y install build-essential librocksdb-dev jq curl
30+ && apt -y install build-essential jq curl
3131RUN apt update && apt -y upgrade
3232
3333RUN ldd --version
3434
35- COPY --from=build /usr/bin/nimbus_execution_client /usr/bin/nimbus_execution_client
36- RUN usr/bin/nimbus_execution_client --version > /version.txt
35+ COPY --from=build /usr/bin/nimbus /usr/bin/nimbus
36+ RUN usr/bin/nimbus --version > /version.txt
3737
3838# Add genesis mapper script.
3939ADD genesis.json /genesis.json
0 commit comments