Toolchain file, dockerfile
All checks were successful
Continuous Integration / Check (push) Successful in 2m36s
Continuous Integration / Clippy (push) Successful in 1m10s

This commit is contained in:
August 2025-10-16 17:32:55 -04:00
parent 386852263a
commit e386810b4a
Signed by: shibedrill
GPG Key ID: 5FE0CB25945EFAA2
2 changed files with 16 additions and 1 deletions

14
Dockerfile Normal file
View File

@ -0,0 +1,14 @@
# Copyright (c) 2025 shibedrill
# SPDX-License-Identifier: MIT
FROM archlinux:latest
WORKDIR /gila
COPY . /gila
RUN pacman -Syu --noconfirm
RUN pacman -S rustup limine xorriso qemu-system-x86 base-devel --noconfirm
RUN rustup toolchain install
RUN cargo install cargo-make
CMD ["cargo", "make", "run"]

View File

@ -1,2 +1,3 @@
[toolchain]
channel = "nightly"
channel = "nightly"
targets = ["x86_64-unknown-none"]