ContainersWorkspace/wireguard/Containerfile

23 lines
382 B
Text
Raw Normal View History

2023-11-24 21:12:55 +01:00
FROM registry.fedoraproject.org/fedora:39
2023-08-01 16:28:44 +02:00
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 &&\
2023-08-01 17:01:01 +02:00
chmod +x /usr/bin/entrypoint.sh && \
mkdir /setup.d
2023-08-01 16:28:44 +02:00
2023-08-01 17:40:45 +02:00
STOPSIGNAL SIGINT
2023-08-01 16:28:44 +02:00
ENTRYPOINT [ "/usr/bin/entrypoint.sh" ]