Skip to content

Commit

Permalink
fix dockerfiles
Browse files Browse the repository at this point in the history
  • Loading branch information
colinlyguo committed May 13, 2024
1 parent a84c18e commit 667e906
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion build/dockerfiles/event_watcher.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ RUN --mount=target=. \
# Pull event_watcher into a second stage deploy alpine container
FROM ubuntu:20.04

RUN mkdir /scroll/lib
RUN mkdir -p /scroll/lib/
RUN apt-get -qq update && apt-get -qq install -y wget
RUN wget -O /scroll/lib/libzktrie.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libzktrie.so
RUN wget -O /scroll/lib/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libscroll_zstd.so
Expand Down
4 changes: 2 additions & 2 deletions build/dockerfiles/gas_oracle.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN go mod download -x
# Build gas_oracle
FROM base as builder

RUN mkdir /scroll/lib
RUN mkdir -p /scroll/lib/
RUN apt-get -qq update && apt-get -qq install -y wget
RUN wget -O /scroll/lib/libzktrie.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libzktrie.so
RUN wget -O /scroll/lib/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libscroll_zstd.so
Expand All @@ -29,7 +29,7 @@ RUN --mount=target=. \
# Pull gas_oracle into a second stage deploy alpine container
FROM ubuntu:20.04

RUN mkdir /scroll/lib
RUN mkdir -p /scroll/lib/
RUN apt-get -qq update && apt-get -qq install -y wget
RUN wget -O /scroll/lib/libzktrie.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libzktrie.so
RUN wget -O /scroll/lib/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libscroll_zstd.so
Expand Down
4 changes: 2 additions & 2 deletions build/dockerfiles/rollup_relayer.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ RUN go mod download -x
# Build rollup_relayer
FROM base as builder

RUN mkdir /scroll/lib
RUN mkdir -p /scroll/lib/
RUN apt-get -qq update && apt-get -qq install -y wget
RUN wget -O /scroll/lib/libzktrie.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libzktrie.so
RUN wget -O /scroll/lib/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libscroll_zstd.so
Expand All @@ -29,7 +29,7 @@ RUN --mount=target=. \
# Pull rollup_relayer into a second stage deploy alpine container
FROM ubuntu:20.04

RUN mkdir /scroll/lib
RUN mkdir -p /scroll/lib/
RUN apt-get -qq update && apt-get -qq install -y wget
RUN wget -O /scroll/lib/libzktrie.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libzktrie.so
RUN wget -O /scroll/lib/libscroll_zstd.so https://github.com/scroll-tech/da-codec/releases/download/v0.0.0-rc0-ubuntu20.04/libscroll_zstd.so
Expand Down

0 comments on commit 667e906

Please sign in to comment.