nunta/Dockerfile

14 lines
593 B
Docker

FROM httpd
RUN echo "APT::Install-Recommends \"0\";\nAPT::Install-Suggests \"0\";\n" > /etc/apt/apt.conf.d/01norecommend
RUN apt-get update -y
# RUN apt-get upgrade -y
RUN apt-get install -y dialog procps telnet rsyslog
RUN apt-get install -y make gcc libc6-dev libpq-dev
RUN apt-get install -y tmux git vim less ssh
RUN apt-get install -y curl ca-certificates
RUN apt-get install -y net-tools iputils-ping man perl-doc
RUN curl -fsSL https://deb.nodesource.com/setup_18.x | bash -
RUN apt-get install -y nodejs
RUN ln -sf /bin/bash /bin/sh
COPY httpd.conf /usr/local/apache2/conf/httpd.conf