From 2002903948ab547daa7ea86f30744d568392ac58 Mon Sep 17 00:00:00 2001 From: ndthanhdev Date: Wed, 25 Jun 2025 01:54:11 +0700 Subject: [PATCH] chore: fix build --- etc/workflow-runtime/src/workflow_runtime.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/etc/workflow-runtime/src/workflow_runtime.go b/etc/workflow-runtime/src/workflow_runtime.go index be25ece..99fe693 100644 --- a/etc/workflow-runtime/src/workflow_runtime.go +++ b/etc/workflow-runtime/src/workflow_runtime.go @@ -15,10 +15,10 @@ type WorkflowRuntime struct { func (m *WorkflowRuntime) BuildBaseEnv(ctx context.Context) *WorkflowRuntime { m.Con = dag. Container(). - From("ubuntu:noble"). + From("ubuntu:plucky"). // apt-get update && apt-get install -y curl git unzip gzip xz-utils WithExec([]string{"apt-get", "update"}). - WithExec([]string{"apt-get", "install", "-y", "build-essential", "curl", "git", "unzip", "bash", "gzip", "xz-utils"}). + WithExec([]string{"apt-get", "install", "-y", "build-essential", "curl", "git", "unzip", "bash", "gzip", "xz-utils", "pkg-config", "libssl-dev"}). // curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.35.3 --yes WithExec([]string{"bash", "-l", "-c", "curl -fsSL https://moonrepo.dev/install/proto.sh | bash -s 0.44.1 --yes"}). WithEnvVariable("PROTO_HOME", "/root/.proto", dagger.ContainerWithEnvVariableOpts{Expand: true}).