ContainersWorkspace/wireguard/Containerfile

23 lines
382 B
Text
Raw Permalink Normal View History

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