copy new native code in to docker build

This commit is contained in:
Graham McIntire 2026-02-09 12:46:34 -06:00
parent 792825f682
commit 71489a709a
No known key found for this signature in database

View file

@ -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