Profil pour contruire un paquet deb à partir d’une source obtenue sur pypi

This commit is contained in:
2021-08-10 12:28:40 +02:00
parent 4c4fd6d42c
commit 56013daed0
3 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,9 @@
#!/usr/bin/env bash
set -e
echo 'ENV DEBIAN_FRONTEND=noninteractive' >> Dockerfile
echo 'RUN apt-get update && apt-get install --yes --no-install-recommends python3-all dh-python python3-pip' >> Dockerfile
echo 'RUN pip3 install stdeb' >> Dockerfile
echo 'ENV DEBIAN_FRONTEND=' >> Dockerfile