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
- Host: GitHub
- URL: https://github.com/davidfstr/hello-deb-package
- Owner: davidfstr
- Created: 2023-09-15T15:53:25.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-09-15T15:54:59.000Z (almost 2 years ago)
- Last Synced: 2025-02-24T03:36:36.550Z (4 months ago)
- Language: Dockerfile
- Homepage:
- Size: 1000 Bytes
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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 <