Fix custom docker image instructions by adding gpg-agent package (#2405)

Signed-off-by: Nik Stuckenbrock <35262568+nikstuckenbrock@users.noreply.github.com>
This commit is contained in:
Nik Stuckenbrock 2025-01-21 21:37:50 +01:00 committed by GitHub
parent ff18b87337
commit 8f616d41fd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -112,7 +112,7 @@ FROM alpine:3.20 AS tofu
ADD install-opentofu.sh /install-opentofu.sh
RUN chmod +x /install-opentofu.sh
RUN apk add gpg
RUN apk add gpg gpg-agent
RUN ./install-opentofu.sh --install-method standalone --install-path / --symlink-path -
```
@ -125,7 +125,7 @@ FROM alpine:3.20 AS tofu
ADD install-opentofu.sh /install-opentofu.sh
RUN chmod +x /install-opentofu.sh
RUN apk add gpg
RUN apk add gpg gpg-agent
RUN ./install-opentofu.sh --install-method standalone --install-path / --symlink-path -
## This is your stage: