Skip to content

Commit 2002903

Browse files
committed
chore: fix build
1 parent 1beb3d9 commit 2002903

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

etc/workflow-runtime/src/workflow_runtime.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ type WorkflowRuntime struct {
1515
func (m *WorkflowRuntime) BuildBaseEnv(ctx context.Context) *WorkflowRuntime {
1616
m.Con = dag.
1717
Container().
18-
From("ubuntu:noble").
18+
From("ubuntu:plucky").
1919
// apt-get update && apt-get install -y curl git unzip gzip xz-utils
2020
WithExec([]string{"apt-get", "update"}).
21-
WithExec([]string{"apt-get", "install", "-y", "build-essential", "curl", "git", "unzip", "bash", "gzip", "xz-utils"}).
21+
WithExec([]string{"apt-get", "install", "-y", "build-essential", "curl", "git", "unzip", "bash", "gzip", "xz-utils", "pkg-config", "libssl-dev"}).
2222
// curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.35.3 --yes
2323
WithExec([]string{"bash", "-l", "-c", "curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.44.1 --yes"}).
2424
WithEnvVariable("PROTO_HOME", "/root/.proto", dagger.ContainerWithEnvVariableOpts{Expand: true}).

0 commit comments

Comments
 (0)