docker-scripts/balancer/Dockerfile

41 lines
1.7 KiB
Docker
Raw Normal View History

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-02-11 16:10:18 +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
#installing php repo
RUN apt-key adv --keyserver keyserver.ubuntu.com --recv-keys 4F4EA0AAE5267A6C
2019-02-11 18:15:45 +03:00
RUN sh -c 'echo "deb http://ppa.launchpad.net/ondrej/nginx-mainline/ubuntu cosmic main" > /etc/apt/sources.list.d/nginx.list'
RUN sh -c 'echo "deb-src http://ppa.launchpad.net/ondrej/nginx-mainline/ubuntu cosmic main" >> /etc/apt/sources.list.d/nginx.list'
2019-02-11 16:10:18 +03:00
#installing utils
RUN apt-get update && apt-get install -y --allow-unauthenticated htop mc tmux iftop cmatrix wget iputils-ping
#installing packages
2019-02-11 18:15:45 +03:00
RUN apt-get install -y --allow-unauthenticated nginx-full 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
rm -rf /var/lib/apt/lists/*
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 apt-get dist-upgrade -y
RUN sudo locale-gen
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-02-11 18:15:45 +03:00
#final config
2018-07-13 18:02:17 +03:00
VOLUME ["/var/cache/nginx"]
EXPOSE 80 443
CMD ["nginx", "-g", "daemon off;"]