From c2a36809b52ab756880ebe9b478c9ec79a924bec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E6=9D=8E=E4=B8=9C=E4=BA=91?= Date: Mon, 4 Dec 2023 15:07:13 +0800 Subject: [PATCH] =?UTF-8?q?feat(roadmap):=20=E2=9C=A8=20=E7=A7=BB=E9=99=A4?= =?UTF-8?q?=E4=BA=86=E4=B8=8D=E5=86=8D=E5=8F=97=E6=94=AF=E6=8C=81=E7=9A=84?= =?UTF-8?q?=208.0=20=E7=89=88=E6=9C=AC?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- swoole/8.0/Dockerfile | 38 -------------------------------------- 1 file changed, 38 deletions(-) delete mode 100644 swoole/8.0/Dockerfile 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