debian dockerfile

This commit is contained in:
Jeffrey C. Ollie
2025-01-16 09:59:57 -06:00
parent 3cdb9a7dfe
commit dd2b680b36
2 changed files with 12 additions and 0 deletions

3
.dockerignore Normal file
View File

@ -0,0 +1,3 @@
/.zig-cache
/zig-out

9
test/debian12/Dockerfile Normal file
View File

@ -0,0 +1,9 @@
FROM docker.io/library/debian:12
RUN apt-get -y update
RUN apt-get -y install xz-utils libadwaita-1-0 libc6 libfontconfig1 libfreetype6 libgtk-4-1 libharfbuzz0b libonig5 libx11-6
ADD https://ziglang.org/download/0.13.0/zig-linux-x86_64-0.13.0.tar.xz /tmp/zig.tar.xz
RUN mkdir /zig; tar --extract --strip-components 1 --directory /zig --file /tmp/zig.tar.xz
ADD . /ghostty
RUN cd /ghostty; /zig/zig build