fix: docker build
All checks were successful
Test / build (map[name:nightly]) (push) Successful in 9m40s
Test / build (map[name:stable]) (push) Successful in 11m21s
Release Please / Release-plz (push) Successful in 15s
Release Please / Docker image (push) Successful in 2m25s

This commit is contained in:
Paul Campbell 2025-01-26 13:23:21 +00:00
parent 7387d7c871
commit 1197408c5c
2 changed files with 2 additions and 1 deletions

1
.dockerignore Normal file
View file

@ -0,0 +1 @@
target/

View file

@ -6,7 +6,7 @@ RUN apk add --no-cache dbus-dev=1.14.10-r4 && rm -rf /vra/cache/apk/*
FROM chef AS planner
COPY Cargo.toml ./
COPY crates crates
COPY src src
RUN cargo chef prepare --recipe-path recipe.json
FROM chef AS builder