Fix: Missing destination in Docker copy instr.
Some checks failed
check / stable / fmt (push) Successful in 45s
check / beta / clippy (push) Failing after 51s
check / stable / clippy (push) Failing after 47s
check / semver (push) Failing after 5m38s
check / nightly / doc (push) Successful in 2m12s
check / ubuntu / stable / features (push) Successful in 2m21s
check / ubuntu / 1.79.0 (push) Failing after 27s

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.
This commit is contained in:
2025-10-03 13:01:47 -05:00
parent 0c8d39d483
commit 57a4d0924d

View File

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