Source files of the container image volkerraschek/rpm-builder
Go to file
Markus Pesch 0a6e178227
continuous-integration/drone/push Build is passing Details
fix(renovate): exclude updating docker.io/plugins/docker
2023-09-03 16:24:11 +02:00
.drone.yml revert(deps): update docker.io/plugins/docker docker tag to v20.14.4 2023-09-03 16:23:38 +02:00
.editorconfig
.gitattributes
.gitignore
.markdownlint.yaml
Dockerfile
LICENSE
Makefile
README.md
manifest.tmpl
renovate.json fix(renovate): exclude updating docker.io/plugins/docker 2023-09-03 16:24:11 +02:00

README.md

rpm-builder-docker

Build Status Docker Pulls

This project contains only build sources for the container image docker.io/volkerraschek/rpm-builder. The upstream project ist hosted on github.

Usage

Package an example application like my-demo-application via the following example command.

$ docker run \
    --workdir /workspace \
    --volume ${PWD}/workspace:rw \
    --rm \
    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.

$ docker run \
    --rm \
    volkerraschek/rpm-builder:latest \
      --help