Skip to content

Commit

Permalink
fix: Copy plugins into containerfile build step
Browse files Browse the repository at this point in the history
Builds for Docker images to publish to Docker Hub were failing because
we weren't copying in all the crates found in the top-level workspace
`Cargo.toml` file, causing Cargo to complain. This fixes that by
copying them into the builder, though they don't get built.

Signed-off-by: Andrew Lilley Brinker <[email protected]>
  • Loading branch information
alilleybrinker committed Sep 4, 2024
1 parent 4086836 commit 86864de
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Containerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ WORKDIR /build
COPY .cargo/ .cargo/
COPY hipcheck-macros/ hipcheck-macros/
COPY hipcheck/ hipcheck/
COPY plugins/ plugins/
COPY xtask/ xtask/
COPY Cargo.toml Cargo.lock ./

Expand Down

0 comments on commit 86864de

Please sign in to comment.