Source files of the container image volkerraschek/rpm-builder
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Go to file
CSRBot e35eaad9d0
continuous-integration/drone/pr Build is passing Details
continuous-integration/drone/push Build is passing Details
chore(deps): update git.cryptic.systems/volker.raschek/markdownlint docker tag to v0.37.0
3 days ago
.drone.yml chore(deps): update git.cryptic.systems/volker.raschek/markdownlint docker tag to v0.37.0 3 days ago
.editorconfig Initial Commit 2 years ago
.gitattributes Initial Commit 2 years ago
.gitignore Initial Commit 2 years ago
.markdownlint.yaml Initial Commit 2 years ago
Dockerfile chore(deps): update docker.io/library/rust docker tag to v1.72.1 5 days ago
LICENSE Initial Commit 2 years ago
Makefile fix(ci): renovate search condition 1 year ago
README.md Initial Commit 2 years ago
manifest.tmpl fix(ci): migrate to git.cryptic.systems 3 months ago
renovate.json fix(renovate): exclude updating docker.io/plugins/docker 3 weeks ago

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