mirror of
https://github.com/EpicMorg/docker-scripts.git
synced 2024-12-26 22:55:44 +03:00
41 lines
1.7 KiB
Docker
41 lines
1.7 KiB
Docker
FROM debian:buster
|
|
MAINTAINER Anatoliy Zimovskiy <stam@epicm.org>
|
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
#editing sources list
|
|
RUN rm /etc/apt/sources.list
|
|
COPY sources.list /etc/apt/sources.list
|
|
COPY locale.gen /etc/locale.gen
|
|
|
|
|
|
# fix errors
|
|
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections
|
|
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
|
|
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'
|
|
|
|
#installing utils
|
|
RUN apt-get update && apt-get install -y --allow-unauthenticated htop mc tmux iftop cmatrix wget iputils-ping
|
|
|
|
#installing packages
|
|
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 && \
|
|
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
|
|
|
|
#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
|
|
|
|
#final config
|
|
VOLUME ["/var/cache/nginx"]
|
|
EXPOSE 80 443
|
|
CMD ["nginx", "-g", "daemon off;"]
|