https://github.com/zachcheung/docker-age
Docker image for age
https://github.com/zachcheung/docker-age
age age-encryption docker
Last synced: 27 days ago
JSON representation
Docker image for age
- Host: GitHub
- URL: https://github.com/zachcheung/docker-age
- Owner: zachcheung
- License: mit
- Created: 2026-03-20T05:10:43.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2026-06-02T07:35:14.000Z (about 2 months ago)
- Last Synced: 2026-06-02T09:20:39.407Z (about 2 months ago)
- Topics: age, age-encryption, docker
- Language: Dockerfile
- Homepage:
- Size: 7.81 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# docker-age
Docker image for [age](https://github.com/FiloSottile/age) — a simple, modern and secure file encryption tool.
This image packages the official prebuilt binaries from [age releases](https://github.com/FiloSottile/age/releases) into a minimal (`scratch`) Docker image, designed for use as a `COPY --from` source in multi-stage builds.
## Supported Architectures
- `linux/amd64`
- `linux/arm64`
- `linux/arm/v7`
## Usage
Use in your Dockerfile to copy the `age` binary without needing a package manager:
```dockerfile
COPY --from=ghcr.io/zachcheung/age /age /usr/local/bin/age
```
To also copy `age-keygen`:
```dockerfile
COPY --from=ghcr.io/zachcheung/age /age-keygen /usr/local/bin/age-keygen
```
Pin to a specific version:
```dockerfile
COPY --from=ghcr.io/zachcheung/age:1.3.1 /age /usr/local/bin/age
```
## License
[MIT](LICENSE)