2019-07-17 12:25:10 +00:00
|
|
|
FROM archlinux/base:latest
|
2018-04-02 22:41:10 +00:00
|
|
|
|
|
|
|
RUN echo "en_US.UTF-8 UTF-8" > /etc/locale.gen && locale-gen
|
|
|
|
|
|
|
|
ENV LC_ALL=en_US.UTF-8 \
|
|
|
|
LANG=en_US.UTF-8
|
|
|
|
|
2019-07-17 12:25:10 +00:00
|
|
|
RUN pacman -Syu --noconfirm
|
2018-04-02 22:41:10 +00:00
|
|
|
|
|
|
|
RUN pacman -S --noconfirm reflector && reflector --verbose -l 200 -p http --sort rate --save /etc/pacman.d/mirrorlist
|
|
|
|
|
|
|
|
RUN pacman -S --noconfirm --needed wget python python-pip vim proxychains base-devel geoip bind-tools grep
|
|
|
|
|
|
|
|
RUN cd /tmp && \
|
|
|
|
wget https://github.com/kelseyhightower/confd/releases/download/v0.14.0/confd-0.14.0-linux-amd64 -O confd && \
|
|
|
|
chmod +x confd
|
|
|
|
|
|
|
|
COPY requirements.txt /tmp/requirements.txt
|
|
|
|
|
|
|
|
RUN pip3 install -r /tmp/requirements.txt
|
|
|
|
|
2019-07-17 12:25:10 +00:00
|
|
|
ADD docker/confd /etc/confd
|
|
|
|
|
|
|
|
COPY ./GeoIPCity.dat /tmp/
|
|
|
|
|
|
|
|
RUN mkdir -p /usr/share/GeoIP/ && mv /tmp/GeoIPCity.dat /usr/share/GeoIP/GeoIPCity.dat
|