Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/authelia/aurpackager
https://github.com/authelia/aurpackager
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/authelia/aurpackager
- Owner: authelia
- Created: 2020-02-19T04:37:38.000Z (almost 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-17T10:07:31.000Z (3 months ago)
- Last Synced: 2024-10-19T13:34:03.642Z (3 months ago)
- Language: Shell
- Size: 20.5 KB
- Stars: 0
- Watchers: 6
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[logo]: https://www.authelia.com/images/branding/title.png "Authelia"
[![alt text][logo]](https://www.authelia.com/)# authelia/aurpackager
[![Docker Pulls](https://img.shields.io/docker/pulls/authelia/aurpackager.svg)](https://hub.docker.com/r/authelia/aurpackager/) [![Docker Stars](https://img.shields.io/docker/stars/authelia/aurpackager.svg)](https://hub.docker.com/r/authelia/aurpackager/)This custom image is based on the `archlinux:latest` to provide an Arch Build System to support the continuous deployment function for Authelia's AUR packages.
The image will be re-built if any updates are made to the base `archlinux:latest` image.## Usage
Here are some example snippets to help you get started utilising this container.
### docker
```
docker run \
--rm \
--name=aurpackager \
-v /authelia:/build \
authelia/aurpackager \
bash -c "cd /build && updpkgsums"
``````
docker run \
--rm \
--name=aurpackager \
-v /authelia:/build \
authelia/aurpackager \
bash -c "cd /build && makepkg --printsrcinfo >| .SRCINFO"
```## Version
- **17/10/2024:** Add Provenance and SBOM attestations
- **22/04/2022:** Remove makedeb
- **08/12/2021:** Remove makedeb-makepkg
- **16/09/2021:** Update for buildx usage
- **10/09/2021:** Replace makedeb-alpha with makedeb and add Buildkite configuration
- **23/06/2021:** Add makedeb
- **19/02/2020:** Initial release