From 457573e74ff161ef93d062cdad27a95dfde9bd7a Mon Sep 17 00:00:00 2001 From: dimon Date: Wed, 21 Aug 2024 15:55:49 +0000 Subject: [PATCH] Update 'dockerfile' --- dockerfile | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) diff --git a/dockerfile b/dockerfile index 12289d8..d736318 100644 --- a/dockerfile +++ b/dockerfile @@ -2,18 +2,6 @@ FROM ubuntu:22.04 VOLUME /usr /lib /etc /var /bin /home /opt CMD /bin/bash -RUN apt update \ - && apt full-upgrade -y \ - && apt install -y \ - curl \ - wget \ - nano \ - telnet \ - iputils-ping \ - net-tools - -RUN export DEBIAN_FRONTEND=noninteractive \ - && apt update \ - && apt install -y tzdata \ - && ln -fs /usr/share/zoneinfo/Europe/Moscow /etc/localtime \ - && dpkg-reconfigure --frontend noninteractive tzdata \ No newline at end of file +ADD https://git.dfosd.synology.me/docker/ubuntu-base/raw/branch/master/setup_programs.sh /setup_programs.sh +RUN chmod +x /setup_programs.sh +RUN /setup_programs.sh \ No newline at end of file