This commit is contained in:
Damir Ibragimov
2023-07-25 13:23:46 +03:00
parent e55bb58542
commit 428250524f
5 changed files with 76 additions and 1 deletions

View File

@@ -2,4 +2,15 @@ FROM ubuntu
ENV DEBIAN_FRONTEND=noninteractive
RUN apt update && apt install -y apt-utils && apt install -y gcc make dkms && apt upgrade -y && apt install nano openresolv iproute2 iptables dante-server
RUN apt update && apt install -y apt-utils dnsutils && apt upgrade -y && apt install -y dante-server iproute2 iptables nano curl wget tini
ENTRYPOINT ["tini", "--"]
ADD danted-init.sh /danted-init.sh
ADD docker-entrypoint.sh /docker-entrypoint.sh
RUN chmod 755 /*.sh
ENTRYPOINT ["tini", "--"]
STOPSIGNAL SIGINT
CMD ["/docker-entrypoint.sh"]