feat: base configuration automation
This commit is contained in:
commit
e4770a7343
70 changed files with 2489 additions and 0 deletions
20
images/Dockerfile-debian-bookworm
Normal file
20
images/Dockerfile-debian-bookworm
Normal file
|
@ -0,0 +1,20 @@
|
|||
FROM debian:bookworm
|
||||
ENV DEBIAN_FRONTEND=noninteractive
|
||||
|
||||
RUN set -eux; \
|
||||
apt-get update && \
|
||||
apt-get upgrade -y; \
|
||||
apt-get install -y --no-install-recommends \
|
||||
ca-certificates \
|
||||
python3 \
|
||||
python3-dev \
|
||||
sudo \
|
||||
systemd \
|
||||
systemd-sysv \
|
||||
; \
|
||||
rm -rf /var/lib/apt/lists/* \
|
||||
;
|
||||
|
||||
STOPSIGNAL SIGRTMIN+3
|
||||
VOLUME ["/run", "/run/lock", "/tmp"]
|
||||
CMD ["/sbin/init"]
|
Loading…
Add table
Add a link
Reference in a new issue