Files
VulkanDriver/test/environment/Dockerfile
T
kbz_8 e793cb6c3f
Build / build (push) Successful in 4m14s
Test / build_and_test (push) Has been cancelled
fixing debug allocator
2026-05-08 14:23:49 +02:00

12 lines
503 B
Docker

FROM ubuntu:latest
WORKDIR /root
RUN apt update && apt install -y git rustup clang curl libgl1 libsm6 libwayland-egl1 libwayland-cursor0 libwayland-server0 vim;
RUN rustup default stable;
RUN cargo install deqp-runner && cp $HOME/.cargo/bin/deqp-runner /usr/bin;
RUN curl -L https://github.com/marler8997/anyzig/releases/latest/download/anyzig-x86_64-linux.tar.gz | tar xz && mv zig /usr/bin/;
RUN git clone https://git.kbz8.me/kbz_8/VulkanDriver.git && cd VulkanDriver;
ENTRYPOINT ["/usr/bin/bash"]