ContainersWorkspace/wireguard/Dockerfile
2023-08-01 16:28:44 +02:00

21 lines
359 B
Docker

FROM registry.fedoraproject.org/fedora:38
ENV PKGS="\
wireguard-tools \
nftables \
bash-completion \
procps \
iproute"
COPY entrypoint.sh /usr/bin/
# install system dependencies
RUN dnf install -y \
${PKGS} \
&& dnf clean all &&\
chmod +x /usr/bin/entrypoint.sh
STOPSIGNAL SIGALRM
ENTRYPOINT [ "/usr/bin/entrypoint.sh" ]