An open API service indexing awesome lists of open source software.

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: 2 months ago
JSON representation

[MIRROR]: Source files of the container image volkerraschek/rpm-builder

Awesome Lists containing this project

README

          

# 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
```