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

22 lines
515 B
Docker

FROM debian
RUN apt-get update && apt-get install --no-install-recommends -y \
busybox \
cron \
ifupdown \
nano \
openssh-server \
ssmtp \
systemd-sysv \
udev \
vim.tiny \
&& rm -rf /var/lib/apt/lists/*
RUN rm -rf /etc/init.d/ && \
mkdir /overlay && \
ln -sf /init /sbin/init && \
ln -sf /lib/systemd/system/systemd-netwkord.service /etc/systemd/system/multi-user.target.wants/systemd-networkd.service
COPY issue /etc/issue
COPY sshd_config /etc/ssh/sshd_config