Files
vpnbot/dockerfile/php.dockerfile
T
runalsh bb1ac60acc edge repo for sing-box (#13)
* added sing-box from repo

* add testing repo for sing-box
2024-04-29 20:48:25 +04:00

33 lines
814 B
Docker

ARG image
FROM $image
RUN echo "https://dl-cdn.alpinelinux.org/alpine/edge/testing" >> /etc/apk/repositories
RUN apk add --no-cache --update php81 \
php81-mbstring \
php81-session \
php81-phar \
php81-zip \
php81-curl \
php81-opcache \
php81-openssl \
php81-iconv \
php81-intl \
php81-pecl-ssh2 \
php81-pecl-yaml \
unit \
unit-php81 \
xxd \
certbot \
libqrencode \
openssh \
openssl \
curl \
git \
py3-qt5 \
sing-box \
&& wget https://github.com/ameshkov/dnslookup/releases/download/v1.9.1/dnslookup-linux-amd64-v1.9.1.tar.gz \
&& tar -xf dnslookup-linux-amd64-v1.9.1.tar.gz \
&& mv linux-amd64/dnslookup /usr/bin \
&& rm dnslookup-linux-amd64-v1.9.1.tar.gz \
&& rm -rf /linux-amd64
ENV ENV="/root/.ashrc"