Fix
This commit is contained in:
parent
dcba580ba7
commit
f30bc188b9
1 changed files with 4 additions and 1 deletions
|
|
@ -120,7 +120,10 @@ func (m *Quintodrome) TestJS(ctx context.Context, src *dagger.Directory) error {
|
|||
}
|
||||
|
||||
func goContainer() *dagger.Container {
|
||||
return dag.Container().From("golang:1.26")
|
||||
return dag.Container().
|
||||
From("golang:1.26").
|
||||
WithExec([]string{"apt-get", "update"}).
|
||||
WithExec([]string{"apt-get", "install", "-y", "zip"})
|
||||
}
|
||||
|
||||
func jsContainer() *dagger.Container {
|
||||
|
|
|
|||
Loading…
Reference in a new issue