Deb: create Ubuntu 20.04 tarball and deb

This commit is contained in:
Dmitry Maksyoma
2021-01-19 22:44:32 +13:00
parent a4369e8897
commit 35cf095a31
8 changed files with 92 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
FROM ubuntu:20.04
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