Deb: add Kali kali-rolling support

This commit is contained in:
Dmitry Maksyoma
2021-01-28 23:46:21 +13:00
parent 9eb9664bcf
commit 2e98b08cec
4 changed files with 97 additions and 2 deletions

View File

@@ -0,0 +1,12 @@
FROM kalilinux/kali-rolling:latest
ENV DEBIAN_FRONTEND noninteractive
RUN apt-get update && \
apt-get -y install vim build-essential devscripts equivs
# Install build-deps for the package.
COPY ./debian/control /tmp
RUN echo YYY | mk-build-deps --install --remove /tmp/control
USER 1000