docker-volume-backup/test/Dockerfile
nick comer 5c3e87ed17 feat: allow backups to be encrypted with age
GPG is known to have usability issues and is generally cumbersome to
use. age [0] is a modern alternative to GPG that is designed by a
cryptographer that has worked and continues to work on Golang's crypto
packages for years.

Allowing age to be used to encrypt backups dramatically simplifies the
backup process.

[0]: https://age-encryption.org/
2024-08-19 20:30:01 +00:00

16 lines
170 B
Docker

FROM docker:27-dind
RUN apk add \
age \
coreutils \
curl \
expect \
gpg \
gpg-agent \
jq \
moreutils \
tar \
zstd \
--no-cache
WORKDIR /code/test