Skip to content

Commit

Permalink
Merge branch 'main' into custom-networks
Browse files Browse the repository at this point in the history
  • Loading branch information
rooooooooob authored Aug 7, 2024
2 parents 59dddc4 + b7578ad commit 9386b57
Show file tree
Hide file tree
Showing 83 changed files with 2,966 additions and 1,014 deletions.
71 changes: 41 additions & 30 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 7 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,10 @@ members = [
"indexer/plan-visualizer",
"indexer/task-docgen"
]


[workspace.dependencies]
cml-chain = { version = "5.3.1" }
cml-core = { version = "5.3.1" }
cml-crypto = { version = "5.3.1" }
cml-multi-era = { version = "5.3.1" }
9 changes: 5 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,15 +1,16 @@
FROM rust:1.73 AS x-builder

WORKDIR /indexer
WORKDIR /app

COPY ./indexer ./
COPY ./Cargo.* ./
COPY ./indexer ./indexer

RUN cargo build --release -p carp -p migration

WORKDIR /ops

RUN cp /indexer/target/release/carp .
RUN cp /indexer/target/release/migration .
RUN cp /app/target/release/carp .
RUN cp /app/target/release/migration .

COPY ./indexer/genesis ./genesis
COPY ./indexer/execution_plans ./execution_plans
Expand Down
Loading

0 comments on commit 9386b57

Please sign in to comment.