ContainersWorkspace/wireguard/Dockerfile

22 lines
359 B
Text
Raw Normal View History

2023-08-01 14:28:44 +00:00
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" ]