rpm-builder-docker/README.md
Markus Pesch 8ba0e29f4e
All checks were successful
Lint Markdown files / markdown-lint (push) Successful in 39s
Update Docker Hub Description / update-description-on-hub-docker-io (push) Successful in 13s
Build / build-arm64 (push) Successful in 12m33s
Build / build-amd64 (push) Successful in 1m45s
docs(README): migrate from docker.io to git.cryptic.systems
2025-05-12 18:19:07 +02:00

38 lines
1.1 KiB
Markdown

# rpm-builder
[![Docker Pulls](https://img.shields.io/docker/pulls/volkerraschek/rpm-builder)](https://hub.docker.com/r/volkerraschek/rpm-builder)
This project contains only build sources for the container image `git.cryptic.systems/volker.raschek/rpm-builder`. The
upstream project ist hosted on [github](https://github.com/Richterrettich/rpm-builder).
## Usage
Package an example application like `my-demo-application` via the following example command.
```bash
$ docker run \
--workdir /workspace \
--volume ${PWD}/workspace:rw \
--rm \
git.cryptic.systems/volker.raschek/rpm-builder:latest \
--arch=x86_64 \
--epoch=0 \
--version=0.1.0 \
--release=1 \
--license="Apache 2.0" \
--name my-demo-application \
--dir installDir:/ \
--out /workspace/my-demo-application.rpm \
.
```
You get on overview of all possible sub commands via `--help` or visit the
[documentation](https://github.com/Richterrettich/rpm-builder#additional-flags).
```bash
$ docker run \
--rm \
git.cryptic.systems/volker.raschek/rpm-builder:latest \
--help
```