7 lines
301 B
Text
7 lines
301 B
Text
|
FROM debian:latest
|
||
|
RUN apt update
|
||
|
RUN apt 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-file update
|
||
|
RUN python3 -m pip install wheel2deb
|