feat: add v2rayGeoIPDat format

This commit is contained in:
Rekryt
2025-08-17 19:38:16 +03:00
parent d4f75e6f79
commit 9f74f79251
33 changed files with 348 additions and 108 deletions

View File

@@ -3,7 +3,7 @@ FROM php:8.2-cli
RUN apt-get update
# dependencies
RUN apt-get install -y ntp whois dnsutils ipcalc
RUN apt-get install -y ntpsec whois dnsutils ipcalc golang git
# composer
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin --filename=composer \
@@ -41,6 +41,9 @@ WORKDIR /app
RUN composer install --no-interaction
RUN git clone https://github.com/v2fly/geoip.git \
&& cd geoip && go build .
EXPOSE 8080
CMD [ "php", "./index.php" ]