Source files of the container image volkerraschek/rpm-builder
Go to file
CSRBot bc5c0e2e8b
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
chore(deps): update quay.io/skopeo/stable docker tag to v1.13.2
2023-08-29 23:45:33 +02:00
.drone.yml chore(deps): update quay.io/skopeo/stable docker tag to v1.13.2 2023-08-29 23:45:33 +02:00
.editorconfig Initial Commit 2021-09-07 13:22:33 +02:00
.gitattributes Initial Commit 2021-09-07 13:22:33 +02:00
.gitignore Initial Commit 2021-09-07 13:22:33 +02:00
.markdownlint.yaml Initial Commit 2021-09-07 13:22:33 +02:00
Dockerfile chore(deps): update dependency docker.io/library/rust to v1.71.1 2023-08-08 01:24:45 +02:00
LICENSE Initial Commit 2021-09-07 13:22:33 +02:00
Makefile fix(ci): renovate search condition 2022-04-14 22:00:13 +02:00
README.md Initial Commit 2021-09-07 13:22:33 +02:00
manifest.tmpl fix(ci): migrate to git.cryptic.systems 2023-07-08 16:56:52 +02:00
renovate.json fix(renovate): automerge minor and patch versions of used container images in docker files 2023-06-18 21:51:56 +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