Skip to content

Commit b316b19

Browse files
committed
fix: use rust 1.89 in pyhl Dockerfile to match toolchain
Signed-off-by: danbugs <danilochiarlone@gmail.com>
1 parent c7adf56 commit b316b19

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

host/pyhl.Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@
1212
# docker run --rm --device /dev/kvm pyhl /path/to/script.py
1313
# echo 'print("hi")' | docker run --rm -i --device /dev/kvm pyhl -
1414

15-
FROM rust:1.87-bookworm AS builder
15+
FROM rust:1.89-bookworm AS builder
16+
COPY rust-toolchain.toml /src/
1617
COPY host/ /src/host/
1718
WORKDIR /src/host
1819
RUN cargo build --release --bin pyhl

0 commit comments

Comments
 (0)