From 57a4d0924d57a0365d0e30d50c9065e4ddc3beb9 Mon Sep 17 00:00:00 2001 From: Robert Garrett Date: Fri, 3 Oct 2025 13:01:47 -0500 Subject: [PATCH] Fix: Missing destination in Docker copy instr. I don't really know how I did that, or how I got a build up on Fly.io without committing the fix. Well, anyway... it's done now. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 8d95a9e7..12dc7a5f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -9,7 +9,7 @@ RUN cargo install --locked wasm-bindgen-cli # will cause Docker to re-run `cargo build` even when the source hasn't changed. COPY src/ ./src COPY Cargo.toml ./Cargo.toml -COPY Cargo.lock +COPY Cargo.lock ./Cargo.lock RUN cargo build --locked --target wasm32-unknown-unknown --profile=wasm-release RUN wasm-bindgen --no-typescript --target web --out-dir ./out/ --out-name "boids" target/wasm32-unknown-unknown/wasm-release/another-boids-in-rust.wasm