ubuntu-base/dockerfile
2024-08-21 15:11:35 +00:00

19 lines
442 B
Plaintext

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