Update image and add some usefull/common tools & libs
This commit is contained in:
parent
50d73b4ace
commit
0ba1127410
2 changed files with 9 additions and 6 deletions
10
Dockerfile
10
Dockerfile
|
@ -1,6 +1,8 @@
|
||||||
FROM debian:latest
|
FROM debian:latest
|
||||||
RUN apt update
|
RUN apt-get update
|
||||||
RUN apt upgrade -y
|
RUN apt-get upgrade -y
|
||||||
RUN apt install -y python3-all python3-dev python3-pip python3-venv python3-apt apt-file dpkg-dev fakeroot build-essential devscripts debhelper dh-python python3-wheel sed lsb-release gnupg2
|
RUN apt-get install -y python3-all python3-dev python3-pip python3-venv python3-apt apt-file dpkg-dev fakeroot build-essential devscripts debhelper dh-python python3-wheel sed lsb-release gnupg2 curl jq git python3-git rsync
|
||||||
RUN apt-file update
|
RUN apt-file update
|
||||||
RUN python3 -m pip install wheel2deb
|
RUN python3 -m pip install wheel2deb pylint pytest flake8 flake8-junit-report pylint-junit junitparser
|
||||||
|
RUN git clone https://gitea.zionetrix.net/bn8/gitdch.git /usr/local/src/gitdch
|
||||||
|
RUN ln -s /usr/local/src/gitdch/gitdch /usr/local/bin/gitdch
|
||||||
|
|
|
@ -2,10 +2,11 @@
|
||||||
|
|
||||||
Image with common dependencies 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-wheel`
|
- common python packages: `python3-all python3-dev python3-pip python3-venv python3-git python3-wheel pylint pytest flake8 flake8-junit-report pylint-junit junitparser`
|
||||||
- common Debian packages building tools: `dpkg-dev fakeroot build-essential devscripts debhelper dh-python`
|
- common Debian packages building tools: `dpkg-dev fakeroot build-essential devscripts debhelper dh-python`
|
||||||
- common tools: `sed lsb-release`
|
- common tools: `sed lsb-release curl jq git rsync`
|
||||||
- GPG siging tools: `gnupg2`
|
- GPG siging tools: `gnupg2`
|
||||||
|
- [gitdch](https://gitea.zionetrix.net/bn8/gitdch) tool
|
||||||
|
|
||||||
To use it:
|
To use it:
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue