| 1234567891011121314151617181920212223242526272829303132333435363738394041 | 
							- FROM --platform=$TARGETPLATFORM phpswoole/swoole:php8.0
 
- # Installation dependencies and PHP core extensions
 
- RUN apt-get update \
 
-         && apt-get -y install --no-install-recommends --assume-yes \
 
-         libpng-dev \
 
-         libzip-dev \
 
-         libzip4 \
 
-         zip \
 
-         unzip \
 
-         git \
 
-         net-tools \
 
-         iputils-ping \
 
-         vim \
 
-         supervisor \
 
-         sudo \
 
-         curl \
 
-         dirmngr \
 
-         apt-transport-https \
 
-         lsb-release \
 
-         ca-certificates \
 
-         libjpeg-dev \
 
-         libfreetype6-dev \
 
-         inotify-tools
 
- RUN curl -sL https://deb.nodesource.com/setup_12.x | sudo -E bash - \
 
-         && apt-get -y install nodejs
 
- RUN docker-php-ext-configure gd --with-freetype --with-jpeg \
 
-         && docker-php-ext-install pdo_mysql gd pcntl zip
 
- RUN mkdir -p /usr/src/php/ext/redis \
 
-         && curl -L https://github.com/phpredis/phpredis/archive/5.3.2.tar.gz | tar xvz -C /usr/src/php/ext/redis --strip 1 \
 
-         && echo 'redis' >> /usr/src/php-available-exts \
 
-         && docker-php-ext-install redis
 
- RUN rm -r /var/lib/apt/lists/*
 
- WORKDIR /var/www
 
- # docker buildx build --no-cache --platform linux/arm64,linux/amd64 -t kuaifan/wookteam:8.0 --push -f ./php.Dockerfile .
 
 
  |