diff --git a/app/AutoReseed.php b/app/AutoReseed.php index a818d78..00820de 100644 --- a/app/AutoReseed.php +++ b/app/AutoReseed.php @@ -13,7 +13,7 @@ use IYUU\Library\Table; class AutoReseed { // 版本号 - const VER = '1.10.18'; + const VER = '1.10.19'; // RPC连接 private static $links = []; // 客户端配置 diff --git a/docker/AMD64/Dockerfile b/docker/AMD64/Dockerfile index 3af3e16..feb1c1c 100644 --- a/docker/AMD64/Dockerfile +++ b/docker/AMD64/Dockerfile @@ -82,7 +82,7 @@ RUN set -ex \ && cp /IYUU/config/config.sample.php /IYUU/config/config.php \ && ln -sf /IYUU/config/config.php /config.php \ && cp /IYUU/docker/entrypoint.sh /entrypoint.sh \ - && chmod -R 777 /entrypoint.sh \ + && chmod +x /entrypoint.sh \ && apk del --purge *-dev \ && rm -rf /var/cache/apk/* /tmp/* /usr/share/man /usr/share/php7 \ # ---------- some config,clear work ---------- diff --git a/docker/Arm64v8/Dockerfile b/docker/Arm64v8/Dockerfile index c9d4808..9f18539 100644 --- a/docker/Arm64v8/Dockerfile +++ b/docker/Arm64v8/Dockerfile @@ -18,7 +18,7 @@ RUN set -ex \ && cp /IYUU/config/config.sample.php /IYUU/config/config.php \ && ln -sf /IYUU/config/config.php /config.php \ && cp /IYUU/docker/entrypoint.sh /entrypoint.sh \ - && chmod -R 777 /entrypoint.sh \ + && chmod +x /entrypoint.sh \ && apk del --purge *-dev \ && rm -rf /var/cache/apk/* /tmp/* /usr/share/man \ && echo "${TZ}" > /etc/timezone \