Skip to content

Commit

Permalink
use debian:stable in gpg signing (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
kminehart authored Oct 18, 2024
1 parent 470ffb5 commit 4cfa9c3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gpg/sign.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ func Signer(d *dagger.Client, pubkey, privkey, passphrase string) *dagger.Contai
gpgPassphraseSecret = d.SetSecret("gpg-passphrase", passphrase)
)

return d.Container().From("debian:sid").
return d.Container().From("debian:stable").
WithExec([]string{"apt-get", "update"}).
WithExec([]string{"apt-get", "install", "-yq", "rpm", "gnupg2", "file"}).
WithMountedSecret("/root/.rpmdb/privkeys/grafana.key", gpgPrivateKeySecret).
Expand Down

0 comments on commit 4cfa9c3

Please sign in to comment.