From 636c2d3fd91ddbb6cf8df55c1ada34297afca938 Mon Sep 17 00:00:00 2001 From: Khue Doan <mail@khuedoan.com> Date: Fri, 19 Jan 2024 03:11:44 +0700 Subject: [PATCH] chore: remove prebuilt tools image for CI It was added to speed up CI, utilize Kaniko's built-in caching feature. However with nixery.dev images we probably don't need it anymore. Long term we still need to setup a proper Nix cache to run nix develop in CI. --- Dockerfile.tools | 5 ----- 1 file changed, 5 deletions(-) delete mode 100644 Dockerfile.tools diff --git a/Dockerfile.tools b/Dockerfile.tools deleted file mode 100644 index 7bebfe05..00000000 --- a/Dockerfile.tools +++ /dev/null @@ -1,5 +0,0 @@ -FROM docker.io/nixos/nix - -COPY flake.nix flake.nix - -RUN nix --experimental-features 'nix-command flakes' develop --command true