From 71489a709a6927cb73982d0555db918653c2b5f0 Mon Sep 17 00:00:00 2001 From: Graham McIntire Date: Mon, 9 Feb 2026 12:46:34 -0600 Subject: [PATCH] copy new native code in to docker build --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index b659d1e..c1035bb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -24,6 +24,7 @@ RUN case "$TARGETPLATFORM" in \ # Copy manifests and build files COPY Cargo.toml Cargo.lock build.rs ./ COPY proto ./proto +COPY native ./native # Create a dummy main.rs to build dependencies RUN mkdir src && echo "fn main() {}" > src/main.rs