gila/Dockerfile
August e386810b4a
All checks were successful
Continuous Integration / Check (push) Successful in 2m36s
Continuous Integration / Clippy (push) Successful in 1m10s
Toolchain file, dockerfile
2025-10-16 17:32:55 -04:00

14 lines
305 B
Docker

# 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"]