An open API service indexing awesome lists of open source software.

https://github.com/davidfstr/hello-deb-package

Example of how to build a binary .deb Debian package
https://github.com/davidfstr/hello-deb-package

Last synced: 4 months ago
JSON representation

Example of how to build a binary .deb Debian package

Awesome Lists containing this project

README

        

# hello .deb Package

This directory contains instructions for building a .deb package that installs
a `hello` command line tool.

## Prerequisites

* Docker
* Python 3.x

## How to Build

* Go to this directory in the Terminal and run the following commands:

```
$ docker build -t hello-build:latest .
$ mkdir -p build
$ docker save -o build/hello-build.tar hello-build:latest
$ cd build
$ tar xf hello-build.tar
$ python3 <