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

31 lines
834 B
Docker

FROM debian
RUN apt-get update && apt-get install --no-install-recommends -y \
busybox \
ca-certificates \
console-data \
cron \
curl \
ifupdown \
kbd \
kmod \
nano \
openssh-server \
python \
ssmtp \
systemd-sysv \
udev \
vim.tiny \
&& rm -rf /var/lib/apt/lists/*
RUN curl -L -o /tmp/wireguard.deb http://httpredir.debian.org/debian/pool/main/w/wireguard/wireguard-tools_0.0.20190227-1_amd64.deb && dpkg -i /tmp/wireguard.deb; rm /tmp/wireguard.deb
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 default.script /etc/udhcpc/default.script
COPY issue /etc/issue
COPY sshd_config /etc/ssh/sshd_config