Docker image for FPM (https://github.com/jordansissel/fpm)
1.1K
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/fpmdocker 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.
Content type
Image
Digest
Size
77.3 MB
Last updated
over 10 years ago
docker pull isim/fpm