2020 done

This commit is contained in:
nemunaire 2020-09-14 15:46:13 +02:00
commit a75f4b43b7
25 changed files with 113 additions and 2498 deletions

View file

@ -1,22 +1,26 @@
FROM debian
RUN apt-get update && apt-get install --no-install-recommends -y \
ca-certificates \
curl \
gnupg \
lsb-release \
software-properties-common \
&& rm -rf /var/lib/apt/lists/*
RUN curl -fsSL https://download.docker.com/linux/debian/gpg | apt-key add - && \
add-apt-repository "deb [arch=amd64] https://download.docker.com/linux/debian $(lsb_release -cs) stable"
RUN apt-get update && apt-get install --no-install-recommends -y \
apt-transport-https \
ca-certificates \
containerd.io \
docker-ce \
docker-ce-cli \
python \
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 && \