Skip to content

Commit 35d29b1

Browse files
authored
chore: build deps (#74)
1 parent eba712b commit 35d29b1

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

etc/templates/skeleton/etc/workflow-runtime/src/workflow_runtime.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func (m *WorkflowRuntime) BuildBaseEnv(ctx context.Context) *WorkflowRuntime {
1818
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"}).
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}).

etc/workflow-runtime/src/workflow_runtime.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ func (m *WorkflowRuntime) BuildBaseEnv(ctx context.Context) *WorkflowRuntime {
1818
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"}).
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)