This repository has been archived on 2024-03-03. You can view files and clone it, but cannot push or open issues or pull requests.
adlin/pkg/debian-tuto3/Dockerfile

26 lines
452 B
Docker
Raw Normal View History

2019-03-10 18:32:38 +00:00
FROM debian
RUN apt-get update && apt-get install --no-install-recommends -y \
busybox \
console-data \
curl \
dnsutils \
dhcpdump \
2019-03-29 08:20:30 +00:00
ethtool \
2019-03-10 18:32:38 +00:00
kbd \
nano \
iptables \
nftables \
openssh-server \
python \
python-apt \
2020-03-28 10:41:28 +00:00
esmtp \
2019-03-10 18:32:38 +00:00
systemd-sysv \
2019-03-29 08:20:30 +00:00
tcpdump \
2019-03-10 18:32:38 +00:00
udev \
vim.tiny \
2021-02-04 08:42:10 +00:00
&& rm -rf /var/lib/apt/lists/* \
&& rm -rf /etc/ssh/ssh_host_*_key*
2019-03-10 18:32:38 +00:00
COPY sshd_config /etc/ssh/sshd_config