Skip to content
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
target/
.cargo
2 changes: 2 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ FROM chef AS builder
WORKDIR /build
COPY --from=planner /app/recipe.json recipe.json

RUN apt-get update && apt-get install -y cmake libclang-dev

# Build dependencies and cache them in a Docker layer
RUN cargo chef cook --release --recipe-path recipe.json

Expand Down
Loading