mirror of
https://github.com/jessfraz/dockerfiles.git
synced 2024-11-23 11:31:49 +01:00
62e20cd24b
Signed-off-by: Jess Frazelle <acidburn@microsoft.com>
45 lines
1.4 KiB
Docker
45 lines
1.4 KiB
Docker
FROM debian:buster
|
|
LABEL maintainer "Jessie Frazelle <jess@linux.com>"
|
|
|
|
RUN apt-get update && apt-get install -y \
|
|
ca-certificates \
|
|
lua-cjson \
|
|
lua-iconv \
|
|
nginx-extras \
|
|
--no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/*
|
|
|
|
# forward request and error logs to docker log collector
|
|
RUN ln -sf /dev/stdout /var/log/nginx/access.log \
|
|
&& ln -sf /dev/stderr /var/log/nginx/error.log
|
|
|
|
COPY nginx.conf /etc/nginx/nginx.conf
|
|
COPY mime.types /etc/nginx/mime.types
|
|
COPY telize.conf /etc/nginx/conf.d/telize.conf
|
|
|
|
EXPOSE 80 443
|
|
|
|
ENV TELIZE_VERSION master
|
|
|
|
RUN buildDeps=' \
|
|
curl \
|
|
git \
|
|
' \
|
|
&& set -x \
|
|
&& apt-get update && apt-get install -y $buildDeps --no-install-recommends \
|
|
&& rm -rf /var/lib/apt/lists/* \
|
|
&& mkdir -p /usr/share/GeoIP \
|
|
&& curl -sSL https://geolite.maxmind.com/download/geoip/database/GeoIPv6.dat.gz -o /usr/share/GeoIP/GeoIPv6.dat.gz \
|
|
&& curl -sSL http://geolite.maxmind.com/download/geoip/database/GeoLiteCityv6-beta/GeoLiteCityv6.dat.gz -o /usr/share/GeoIP/GeoLiteCityv6.dat.gz \
|
|
&& curl -sSL http://download.maxmind.com/download/geoip/database/asnum/GeoIPASNumv6.dat.gz -o /usr/share/GeoIP/GeoIPASNumv6.dat.gz \
|
|
&& gunzip /usr/share/GeoIP/*gz \
|
|
&& git clone --depth 1 --branch "${TELIZE_VERSION}" https://github.com/fcambus/telize.git /usr/src/telize \
|
|
&& ( \
|
|
cd /usr/src/telize \
|
|
&& cp timezone*.conf /etc/nginx/ \
|
|
) \
|
|
&& rm -rf /usr/src/telize \
|
|
&& apt-get purge -y --auto-remove $buildDeps
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|