You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
RUN wget -O $SCROLL_LIB_PATH/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/$LIBSCROLL_ZSTD_VERSION/libscroll_zstd.so
RUN wget -O $SCROLL_LIB_PATH/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/$LIBSCROLL_ZSTD_VERSION/libscroll_zstd.so
Copy file name to clipboardExpand all lines: Dockerfile.mockccc
+24-1Lines changed: 24 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -2,18 +2,41 @@
2
2
ARG COMMIT=""
3
3
ARG VERSION=""
4
4
ARG BUILDNUM=""
5
+
ARG LIBSCROLL_ZSTD_VERSION=v0.1.0-rc0-ubuntu20.04
6
+
ARG SCROLL_LIB_PATH=/scroll/lib
5
7
6
8
# Build Geth in a stock Go builder container
7
9
FROM scrolltech/go-rust-builder:go-1.20-rust-nightly-2022-12-10 as builder
8
10
9
11
ADD . /go-ethereum
10
-
RUN cd /go-ethereum && env GO111MODULE=on go run build/ci.go install ./cmd/geth
12
+
13
+
ARG LIBSCROLL_ZSTD_VERSION
14
+
ARG SCROLL_LIB_PATH
15
+
16
+
RUN mkdir -p $SCROLL_LIB_PATH
17
+
18
+
RUN apt-get -qq update && apt-get -qq install -y wget
19
+
RUN wget -O $SCROLL_LIB_PATH/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/$LIBSCROLL_ZSTD_VERSION/libscroll_zstd.so
RUN apt-get -qq update && apt-get -qq install -y wget
35
+
RUN wget -O $SCROLL_LIB_PATH/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/$LIBSCROLL_ZSTD_VERSION/libscroll_zstd.so
0 commit comments