From 65b46b46575349f1bde55d5130c266581ac9e909 Mon Sep 17 00:00:00 2001 From: Tsiry Sandratraina Date: Tue, 31 Oct 2023 14:55:15 +0000 Subject: [PATCH] fix(ci): install shasum --- .fluentci/src/dagger/jobs.ts | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.fluentci/src/dagger/jobs.ts b/.fluentci/src/dagger/jobs.ts index 8f627e9..f7f452e 100644 --- a/.fluentci/src/dagger/jobs.ts +++ b/.fluentci/src/dagger/jobs.ts @@ -25,7 +25,12 @@ const baseCtr = (client: Client, pipeline: string) => { .withMountedCache("/etc/nix", client.cacheVolume("nix-etc")) ); } - return client.pipeline(pipeline).container().from("denoland/deno:alpine"); + return client + .pipeline(pipeline) + .container() + .from("denoland/deno:alpine") + .withExec(["apk", "update"]) + .withExec(["apk", "add", "perl-utils"]); }; export const lint = async (src = ".") => {