Backup tuto3
This commit is contained in:
parent
9262917553
commit
43b5f7ba94
9 changed files with 525 additions and 0 deletions
20
pkg/debian-tuto3/Dockerfile
Normal file
20
pkg/debian-tuto3/Dockerfile
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
FROM debian
|
||||
|
||||
RUN apt-get update && apt-get install --no-install-recommends -y \
|
||||
busybox \
|
||||
console-data \
|
||||
curl \
|
||||
dnsutils \
|
||||
kbd \
|
||||
nano \
|
||||
iptables \
|
||||
nftables \
|
||||
openssh-server \
|
||||
python \
|
||||
ssmtp \
|
||||
systemd-sysv \
|
||||
udev \
|
||||
vim.tiny \
|
||||
&& rm -rf /var/lib/apt/lists/*
|
||||
|
||||
COPY sshd_config /etc/ssh/sshd_config
|
||||
Reference in a new issue