Skip to content

Commit

Permalink
chore: 🧑‍💻 Fix devcontainer build
Browse files Browse the repository at this point in the history
  • Loading branch information
ion098 committed Feb 13, 2025
1 parent a347bd5 commit 4502c8d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,11 +1,14 @@
FROM rust:1.67 as builder
FROM rust:1.84 as builder

RUN git clone https://github.com/vexide/vex-v5-qemu.git /vex-v5-qemu

WORKDIR /vex-v5-qemu
RUN cd packages/kernel; cargo build --target-dir /target/kernel

RUN cd packages/client-cli; cargo install --path . --root /target/client-cli
# FIXME: This should probably be removed in the future since it's very fragile
RUN rustup toolchain install nightly

RUN cd packages/client-cli; cargo +nightly install --path . --root /target/client-cli

FROM mcr.microsoft.com/devcontainers/cpp:1-noble
# ------------
Expand Down

0 comments on commit 4502c8d

Please sign in to comment.