https://github.com/volker-raschek/rpm-builder-docker
[MIRROR]: Source files of the container image volkerraschek/rpm-builder
https://github.com/volker-raschek/rpm-builder-docker
container rpm rpm-builder
Last synced: about 2 months ago
JSON representation
[MIRROR]: Source files of the container image volkerraschek/rpm-builder
- Host: GitHub
- URL: https://github.com/volker-raschek/rpm-builder-docker
- Owner: volker-raschek
- License: other
- Created: 2024-12-20T09:05:19.000Z (5 months ago)
- Default Branch: master
- Last Pushed: 2025-02-28T20:49:46.000Z (3 months ago)
- Last Synced: 2025-02-28T23:43:37.041Z (3 months ago)
- Topics: container, rpm, rpm-builder
- Language: Makefile
- Homepage: https://hub.docker.com/r/volkerraschek/rpm-builder
- Size: 52.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# rpm-builder-docker
[](https://drone.cryptic.systems/volker.raschek/rpm-builder-docker)
[](https://hub.docker.com/r/volkerraschek/rpm-builder)This project contains only build sources for the container image
`docker.io/volkerraschek/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 \
docker.io/volkerraschek/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 \
docker.io/volkerraschek/rpm-builder:latest \
--help
```