feat: add debian packaging

fuck this is complicated. Why'd you make it so insane, debian
maintainers?
Please fix this.

It's working now, but Makefile must be modified... I dont like that.
Let's find another way
This commit is contained in:
2024-08-18 20:22:06 +02:00
parent ccd07141f5
commit d02eb34285
13 changed files with 197 additions and 60 deletions

View File

@ -1,6 +1,13 @@
FROM debian:latest
# TODO: Remove busybox from this list once you're done experimenting (you only need vi)
RUN apt-get update ; apt-get install -y build-essential devscripts dh-make busybox
RUN apt-get update && apt-get install -y \
build-essential \
devscripts \
busybox \
dh-make \
uuid-dev \
uuid \
util-linux
ARG DOCKER_USER=deb
# Set user and group
@ -14,5 +21,3 @@ ENV USER=${user}
# Switch to user
USER ${uid}:${gid}
ENTRYPOINT ["bash", "--login"]