isim/fpm
Docker image for FPM (https://github.com/jordansissel/fpm)
346
Docker image for FPM (https://github.com/jordansissel/fpm).
FPM is a package management tool that makes creating and updating existing packages (deb, rpm, tar, zip, osxpkg etc.) easy.
For more information, refer https://github.com/jordansissel/fpm
docker pull isim/fpm
docker build --rm -t isim/fpm .
docker run --rm isim/fpm <fpm-command>
To create a debian package from a binary located in your current folder:
$ docker run --rm
-v `pwd`:/workspace \
-w /workspace
isim/fpm \
-s dir \
-t deb \
-n $OUTPUT_PACKAGE_NAME \
-v $PACKAGE_VERSION \
--deb-no-default-config-files \
--prefix=/usr/local \
$PATH_TO_BIN
Refer to the LICENSE file.
docker pull isim/fpm