File tree Expand file tree Collapse file tree 4 files changed +36
-4
lines changed
Expand file tree Collapse file tree 4 files changed +36
-4
lines changed Original file line number Diff line number Diff line change 11FROM rust:1-bookworm AS base
22
3+ # Add dependencies for building reth-mdbx-sys (needed by workspace dependencies)
4+ RUN apt-get update && apt-get install -y \
5+ clang \
6+ libclang-dev \
7+ llvm-dev \
8+ pkg-config && \
9+ rm -rf /var/lib/apt/lists/*
10+
311RUN cargo install cargo-chef --locked
412WORKDIR /app
513
@@ -32,4 +40,4 @@ COPY --from=builder /tmp/tips-audit /app/tips-audit
3240
3341EXPOSE 3001
3442
35- CMD ["/app/tips-audit" ]
43+ CMD ["/app/tips-audit" ]
Original file line number Diff line number Diff line change 11FROM rust:1-bookworm AS base
22
3+ # Add dependencies for building reth-mdbx-sys (needed by workspace dependencies)
4+ RUN apt-get update && apt-get install -y \
5+ clang \
6+ libclang-dev \
7+ llvm-dev \
8+ pkg-config && \
9+ rm -rf /var/lib/apt/lists/*
10+
311RUN cargo install cargo-chef --locked
412WORKDIR /app
513
@@ -32,4 +40,4 @@ COPY --from=builder /tmp/tips-ingress-rpc /app/tips-ingress-rpc
3240
3341EXPOSE 3000
3442
35- CMD ["/app/tips-ingress-rpc" ]
43+ CMD ["/app/tips-ingress-rpc" ]
Original file line number Diff line number Diff line change 11FROM rust:1-bookworm AS base
22
3+ # Add dependencies for building reth-mdbx-sys (needed by workspace dependencies)
4+ RUN apt-get update && apt-get install -y \
5+ clang \
6+ libclang-dev \
7+ llvm-dev \
8+ pkg-config && \
9+ rm -rf /var/lib/apt/lists/*
10+
311RUN cargo install cargo-chef --locked
412WORKDIR /app
513
@@ -30,4 +38,4 @@ WORKDIR /app
3038
3139COPY --from=builder /tmp/tips-ingress-writer /app/tips-ingress-writer
3240
33- CMD ["/app/tips-ingress-writer" ]
41+ CMD ["/app/tips-ingress-writer" ]
Original file line number Diff line number Diff line change 11FROM rust:1-bookworm AS base
22
3+ # Add dependencies for building reth-mdbx-sys (needed by workspace dependencies)
4+ RUN apt-get update && apt-get install -y \
5+ clang \
6+ libclang-dev \
7+ llvm-dev \
8+ pkg-config && \
9+ rm -rf /var/lib/apt/lists/*
10+
311RUN cargo install cargo-chef --locked
412WORKDIR /app
513
@@ -30,4 +38,4 @@ WORKDIR /app
3038
3139COPY --from=builder /tmp/tips-maintenance /app/tips-maintenance
3240
33- CMD ["/app/tips-maintenance" ]
41+ CMD ["/app/tips-maintenance" ]
You can’t perform that action at this time.
0 commit comments