docker-debian-python-deb/README.md

16 lines
653 B
Markdown
Raw Normal View History

2022-04-30 14:25:18 +02:00
# Docker image to build Debian package of Python apps/libraries
Image with common dependencies to build Debian package of Python apps/libraries :
- common python packages: `python3-all python3-dev python3-pip python3-venv python3-git python3-wheel pylint pytest flake8 flake8-junit-report pylint-junit junitparser`
2022-04-30 14:25:18 +02:00
- common Debian packages building tools: `dpkg-dev fakeroot build-essential devscripts debhelper dh-python`
- common tools: `sed lsb-release curl jq git rsync`
2022-04-30 14:25:18 +02:00
- GPG siging tools: `gnupg2`
- [gitdch](https://gitea.zionetrix.net/bn8/gitdch) tool
2022-04-30 14:25:18 +02:00
To use it:
```bash
docker run -it -v "$(pwd)":/src -w /src brenard/debian-python-deb
```