You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
4 weeks ago | |
---|---|---|
.drone.yml | 4 weeks ago | |
.editorconfig | 1 year ago | |
.gitattributes | 1 year ago | |
.gitignore | 1 year ago | |
.markdownlint.yaml | 1 year ago | |
Dockerfile | 1 year ago | |
LICENSE | 1 year ago | |
Makefile | 10 months ago | |
README.md | 1 year ago | |
manifest.tmpl | 1 year ago | |
renovate.json | 1 year ago |
README.md
rpm-builder-docker
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