From 8890984d38b701decf7d5c91cf9a30784be5cfed Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Sun, 17 Mar 2024 16:44:57 +0100 Subject: [PATCH] fix docker image --- docker.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/docker.nix b/docker.nix index 3b45637..d7a06e6 100644 --- a/docker.nix +++ b/docker.nix @@ -5,6 +5,8 @@ runtimeShell, writeScriptBin, fakeNss, + coreutils, + bash, dockerTools }: let phpWithExtensions = php.buildEnv { @@ -24,6 +26,8 @@ in dockerTools.buildLayeredImage { demostf-parser phpWithExtensions dockerTools.caCertificates + coreutils + bash fakeNss (writeScriptBin "start-server" '' #!${runtimeShell}