Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions apps/indexer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
FROM docker.io/library/rust:1.94 AS test
FROM docker.io/library/rust:1.95 AS test
WORKDIR /app
COPY apps/indexer/Cargo.toml apps/indexer/Cargo.toml
COPY apps/indexer/Cargo.lock apps/indexer/Cargo.lock
COPY apps/indexer/src apps/indexer/src
COPY apps/indexer/tests apps/indexer/tests
RUN cargo test --locked --manifest-path apps/indexer/Cargo.toml

FROM docker.io/library/rust:1.94 AS builder
FROM docker.io/library/rust:1.95 AS builder
WORKDIR /app
COPY apps/indexer/Cargo.toml apps/indexer/Cargo.toml
COPY apps/indexer/Cargo.lock apps/indexer/Cargo.lock
Expand Down