init
Some checks failed
/ check (push) Failing after 4s

This commit is contained in:
iofq 2026-01-11 23:06:17 -06:00
parent 36f19d42c5
commit 2552ed4726
6 changed files with 51 additions and 13 deletions

View file

@ -0,0 +1,31 @@
{ pkgs, ... }:
pkgs.dockerTools.buildLayeredImage {
name = "nix-with-node";
contents = with pkgs; [
./root
bashInteractive
cacert
coreutils
git
gnutar
gzip
nix
nodejs
openssh
xz
];
config = {
Cmd = [ "/bin/bash" ];
Env = [
"ENV=/etc/profile.d/nix.sh"
"NIX_BUILD_SHELL=/bin/bash"
"PATH=/usr/bin:/bin"
"SSL_CERT_FILE=${pkgs.cacert}/etc/ssl/certs/ca-bundle.crt"
"USER=root"
];
};
extraCommands = ''
'';
}