Fix: use internal Nexus repository to download Redis extension

This commit is contained in:
2026-08-30 14:42:19 +07:00
parent a62fd7a7b3
commit 57dddbc7d4
+1 -1
View File
@@ -39,7 +39,7 @@ RUN echo "deb [trusted=yes] http://10.15.39.186:8081/repository/debian-proxy/ bu
unzip \
&& docker-php-ext-configure gd --with-freetype --with-jpeg \
&& docker-php-ext-install gd pdo pdo_mysql zip \
&& curl -x http://10.15.3.20:80 -fsSL https://pecl.php.net/get/redis-5.3.7.tgz -o redis.tgz \
&& curl -k -fsSL https://nexus.dashboard-bpkd.drc-bpkd.data-center.id/repository/raw-assets/storage/app/uploads/redis-5.3.7.tgz -o redis.tgz \
&& pecl install redis.tgz \
&& docker-php-ext-enable redis \
&& rm -f redis.tgz \