We need gcc during runtime to enable triton to compile kernels.

This commit is contained in:
Nicolas Patry 2025-03-12 23:07:06 +01:00
parent d4c6faa67b
commit 273d304cf9
No known key found for this signature in database
GPG Key ID: 4242CEF24CB6DBF9

View File

@ -1,4 +1,5 @@
{ {
stdenv,
dockerTools, dockerTools,
cacert, cacert,
text-generation-inference, text-generation-inference,
@ -19,5 +20,8 @@ build {
]; ];
}; };
contents = [ cacert ]; contents = [
cacert
stdenv.cc
];
} }