Skip to content

Commit

Permalink
fix(ci): install shasum
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Oct 31, 2023
1 parent 0338031 commit 8bf4676
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .fluentci/src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const baseCtr = (client: Client, pipeline: string) => {
.container()
.from("alpine:latest")
.withExec(["apk", "update"])
.withExec(["apk", "add", "bash", "curl"])
.withExec(["apk", "add", "bash", "curl", "perl-utils"])
.withMountedCache("/nix", client.cacheVolume("nix"))
.withMountedCache("/etc/nix", client.cacheVolume("nix-etc"))
);
Expand Down

0 comments on commit 8bf4676

Please sign in to comment.