diff --git a/packages/indexer/Dockerfile b/packages/indexer/Dockerfile index 8f9af328..f0d8796d 100644 --- a/packages/indexer/Dockerfile +++ b/packages/indexer/Dockerfile @@ -1,13 +1,13 @@ FROM rust:1.82-alpine3.19 as build -RUN apk add --no-cache git cmake clang openssl openssl-dev build-base +RUN apk add --no-cache git cmake clang openssl openssl-dev openssl-libs-static build-base WORKDIR / RUN git clone --depth 1 --branch v1.5.1 https://github.com/dashevo/platform WORKDIR /app COPY Cargo.lock /app COPY Cargo.toml /app COPY src /app/src -RUN cargo build +RUN cargo build --verbose FROM alpine:3.19 as indexer WORKDIR /app