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/tinydeb/Dockerfile

16 lines
329 B
Docker
Raw Normal View History

2019-03-29 08:59:51 +00:00
FROM debian
RUN apt-get update && apt-get install --no-install-recommends -y \
busybox \
nano \
openssh-server \
2019-03-29 12:12:25 +00:00
python \
python-apt \
systemd-sysv \
2019-03-29 08:59:51 +00:00
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-29 08:59:51 +00:00
COPY gai.conf /etc/gai.conf
COPY sshd_config /etc/ssh/sshd_config