diff --git a/swoole/8.0/Dockerfile b/swoole/8.0/Dockerfile deleted file mode 100644 index 4c38d33..0000000 --- a/swoole/8.0/Dockerfile +++ /dev/null @@ -1,38 +0,0 @@ -# Default Dockerfile -# -# @link https://studio.luxcreo.cn/ -# @contact dongyun.li@luxcreo.cn - -FROM hyperf/hyperf:8.0-alpine-v3.16-swoole -LABEL maintainer="李东云 " version="1.0" license="MIT" app.name="LuxHyperf" - -## -# ---------- env settings ---------- -## -# --build-arg timezone=Asia/Shanghai -ENV TIMEZONE=Asia/Shanghai \ - SCAN_CACHEABLE=(true) \ - COMPOSER_ALLOW_SUPERUSER=1 - -# update -RUN set -ex \ - && sed -i 's/dl-cdn.alpinelinux.org/mirrors.aliyun.com/g' /etc/apk/repositories \ - # show php version and extensions - && php -v \ - && php -m \ - && php --ri swoole \ - # ---------- some config ---------- - && cd /etc/php8 \ - # - config PHP - && { \ - echo "upload_max_filesize=128M"; \ - echo "post_max_size=128M"; \ - echo "memory_limit=1G"; \ - } | tee conf.d/99_overrides.ini \ - # ---------- clear works ---------- - && rm -rf /var/cache/apk/* /tmp/* /usr/share/man \ - && echo -e "\033[42;37m Build Completed :).\033[0m\n" - -WORKDIR /srv/www - -EXPOSE 9501 \ No newline at end of file