2019-02-11 18:15:45 +03:00
|
|
|
FROM debian:buster
|
2018-07-13 18:02:17 +03:00
|
|
|
MAINTAINER Anatoliy Zimovskiy <stam@epicm.org>
|
|
|
|
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
2019-02-11 16:10:18 +03:00
|
|
|
#editing sources list
|
|
|
|
RUN rm /etc/apt/sources.list
|
|
|
|
COPY sources.list /etc/apt/sources.list
|
|
|
|
COPY locale.gen /etc/locale.gen
|
|
|
|
|
2018-07-13 18:02:17 +03:00
|
|
|
# fix errors
|
|
|
|
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
2019-03-06 19:54:00 +03:00
|
|
|
|
|
|
|
#installing utils
|
2019-04-10 01:50:48 +03:00
|
|
|
RUN apt-get update && apt-get install -y --allow-unauthenticated ca-certificates gnupg sudo apt-transport-https lsb-release apt-utils locales console-cyrillic wget curl htop mc tmux iftop cmatrix iputils-ping cmatrix-xfont lsof lynx fontconfig smbclient nano
|
2019-03-04 23:48:33 +03:00
|
|
|
|
|
|
|
#installing nginx repo
|
|
|
|
RUN wget -O /etc/apt/trusted.gpg.d/nginx-mainline.gpg https://packages.sury.org/nginx-mainline/apt.gpg
|
2019-04-10 00:32:09 +03:00
|
|
|
RUN sh -c 'echo "deb https://packages.sury.org/nginx-mainline/ buster main" > /etc/apt/sources.list.d/nginx-mainline.list'
|
|
|
|
|
2019-02-11 16:10:18 +03:00
|
|
|
#installing packages
|
2019-04-10 01:20:21 +03:00
|
|
|
RUN apt-get update && apt-get install -y --allow-unauthenticated libgd-tools geoip-bin nginx-doc ssl-cert nginx-extras openssl libnginx-mod-http-cache-purge libnginx-mod-http-dav-ext libnginx-mod-http-geoip libnginx-mod-http-headers-more-filter libnginx-mod-http-lua libnginx-mod-http-uploadprogress libnginx-mod-mail libnginx-mod-stream libnginx-mod-http-xslt-filter
|
2018-07-13 18:02:17 +03:00
|
|
|
|
|
|
|
RUN ln -sf /dev/stdout /var/log/nginx/access.log && \
|
|
|
|
ln -sf /dev/stderr /var/log/nginx/error.log
|
|
|
|
|
2019-02-11 16:10:18 +03:00
|
|
|
#After install fixes
|
|
|
|
RUN localedef en_US.UTF-8 -i en_US -f UTF-8
|
|
|
|
RUN update-locale LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8
|
2019-03-06 19:54:00 +03:00
|
|
|
RUN apt update
|
|
|
|
RUN apt upgrade -y
|
|
|
|
RUN apt dist-upgrade -y
|
|
|
|
RUN apt-get clean autoclean
|
|
|
|
RUN apt-get autoremove -y
|
|
|
|
RUN rm -rf /var/lib/apt/lists/*
|
2019-02-11 16:10:18 +03:00
|
|
|
|
2019-02-11 18:15:45 +03:00
|
|
|
#final config
|
2018-07-13 18:02:17 +03:00
|
|
|
VOLUME ["/var/cache/nginx"]
|
|
|
|
EXPOSE 80 443
|
2019-04-10 00:32:09 +03:00
|
|
|
|
2018-07-13 18:02:17 +03:00
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|