This custom image is based on the {arm32v7|arm64v8}/ubuntu:latest
to provide an Ubuntu Build System to support the continuous deployment function for Authelia's deb packages.
The image will be re-built if any updates are made to the base images.
Here are some example snippets to help you get started utilising this container.
docker run \
--rm \
--name=debpackager \
-v <path to data>:/build \
--platform linux/amd64 \
authelia/debpackager \
bash -c "cd /build && makedeb"
docker run \
--rm \
--name=debpackager \
-v <path to data>:/build \
--platform linux/arm/v7 \
authelia/debpackager \
bash -c "cd /build && makedeb"
docker run \
--rm \
--name=debpackager \
-v <path to data>:/build \
--platform linux/arm64 \
authelia/debpackager \
bash -c "cd /build && makedeb"
- 17/10/2024: Add Provenance and SBOM attestations
- 26/04/2024: Update build user
- 22/04/2022: Add amd64 architecture
- 16/09/2021: Update for buildx usage
- 11/09/2021: Replace makedeb-alpha with makedeb and add Buildkite configuration
- 24/06/2021: Initial release