Skip to content

Commit

Permalink
install ruby-dev
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Oct 26, 2023
1 parent d01852c commit 53232c5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion src/dagger/jobs.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,14 @@ export const execLane = async (name: string, src = ".") => {
.container()
.from("ghcr.io/fluentci-io/pkgx:latest")
.withExec(["apt-get", "update"])
.withExec(["apt-get", "install", "-y", "build-essential", "ruby"])
.withExec([
"apt-get",
"install",
"-y",
"build-essential",
"ruby",
"ruby-dev",
])
.withExec(["pkgx", "install", "bun", "node", "unzip", "rtx", "wget"])
.withExec([
"wget",
Expand Down

0 comments on commit 53232c5

Please sign in to comment.