ContainersWorkspace/wireguard/Containerfile
Maciej Lebiest bb1468170d
All checks were successful
Build images / build-images-arm64 (push) Successful in 11m34s
Build images / build-images-amd64 (push) Successful in 13m59s
Build images / update-images-manifests (push) Successful in 36s
Containerfiles, add rclone, rsync to toolboxes
2024-02-11 20:07:07 +01:00

22 lines
382 B
Docker

FROM registry.fedoraproject.org/fedora:39
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 && \
mkdir /setup.d
STOPSIGNAL SIGINT
ENTRYPOINT [ "/usr/bin/entrypoint.sh" ]