Containerfiles, add rclone, rsync to toolboxes
This commit is contained in:
parent
a551468585
commit
bb1468170d
9 changed files with 4 additions and 2 deletions
22
wireguard/Containerfile
Normal file
22
wireguard/Containerfile
Normal file
|
@ -0,0 +1,22 @@
|
|||
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" ]
|
Loading…
Add table
Add a link
Reference in a new issue