diff --git a/Dockerfile b/Dockerfile index 9a19b27..4c081eb 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,11 +3,11 @@ RUN apk update && apk upgrade RUN apk add bash RUN apk add autoconf automake make gcc g++ RUN apk add nginx -RUN apk add php83 php83-fpm php83-opcache php83-tokenizer -RUN apk add php83-gd php83-zlib php83-curl php83-bz2 php83-bcmath php83-exif php83-fileinfo php83-iconv php83-imap php83-intl php83-ldap php83-mbstring php83-mysqli php83-odbc php83-pdo php83-pdo_mysql php83-pdo_odbc php83-pdo_pgsql php83-pdo_sqlite php83-pear php83-pecl-imagick php83-pecl-memcache php83-pecl-memcached php83-pecl-mongodb php83-pecl-redis php83-pecl-smbclient php83-pecl-ssh2 php83-pecl-xdebug php83-pecl-yaml php83-pgsql php83-phar php83-phpdbg php83-session php83-simplexml php83-snmp php83-soap php83-sockets php83-sodium php83-sqlite3 php83-sysvmsg php83-tidy php83-xml php83-xmlreader php83-xmlwriter php83-xsl php83-zip +RUN apk add php84 php84-fpm php84-opcache php84-tokenizer +RUN apk add php84-gd php84-zlib php84-curl php84-bz2 php84-bcmath php84-exif php84-fileinfo php84-iconv php84-imap php84-intl php84-ldap php84-mbstring php84-mysqli php84-odbc php84-pdo php84-pdo_mysql php84-pdo_odbc php84-pdo_pgsql php84-pdo_sqlite php84-pear php84-pecl-imagick php84-pecl-memcache php84-pecl-memcached php84-pecl-mongodb php84-pecl-redis php84-pecl-smbclient php84-pecl-ssh2 php84-pecl-xdebug php84-pecl-yaml php84-pgsql php84-phar php84-phpdbg php84-session php84-simplexml php84-snmp php84-soap php84-sockets php84-sodium php84-sqlite3 php84-sysvmsg php84-tidy php84-xml php84-xmlreader php84-xmlwriter php84-xsl php84-zip RUN apk add redis COPY nginx /etc/nginx -COPY php /etc/php83 +COPY php /etc/php84 COPY redis/redis.conf /etc/redis.conf RUN mkdir /var/run/php EXPOSE 80 @@ -15,4 +15,4 @@ EXPOSE 443 EXPOSE 6379 EXPOSE 9000 STOPSIGNAL SIGTERM -CMD ["/bin/bash", "-c", "php-fpm83 && chmod 755 /usr/share/nginx/html/* && nginx -g 'daemon off;' && redis-server /etc/redis.conf"] \ No newline at end of file +CMD ["/bin/bash", "-c", "php-fpm84 && chmod 755 /usr/share/nginx/html/* && nginx -g 'daemon off;' && redis-server /etc/redis.conf"] \ No newline at end of file