-
-
Notifications
You must be signed in to change notification settings - Fork 854
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
What is the status of this project? #299
Comments
well here is a version with php 8.4 `FROM php:8.4-fpm-alpine3.20 LABEL maintainer="Taity [email protected]" ENV php_conf="/usr/local/etc/php-fpm.conf" ENV LUAJIT_LIB="/usr/lib" resolves #166ENV LD_PRELOAD="/usr/lib/preloadable_libiconv.so php" #INstall nginx + lua and devel kit # RUN echo @testing https://dl-cdn.alpinelinux.org/alpine/edge/testing >> /etc/apk/repositories && \# echo /etc/apk/respositories && \RUN apk update && apk upgrade && RUN apk add --no-cache --virtual .sys-deps # Install PHP modulesRUN docker-php-ext-configure gd Install composerRUN mkdir -p /var/www/app && RUN mkdir -p /etc/letsencrypt/webrootauth ADD conf/supervisord.conf /etc/supervisord.conf # Copy our nginx configRUN rm -Rf /etc/nginx/nginx.conf nginx site confRUN mkdir -p /etc/nginx/sites-available/ && tweak php-fpm configRUN echo "cgi.fix_pathinfo=0" > ${php_vars} && ln -s /etc/php7/php.ini /etc/php7/conf.d/php.ini && \RUN cp /usr/local/etc/php/php.ini-development /usr/local/etc/php/php.ini && Add ScriptsADD scripts/start.sh /start.sh copy in codeADD src/ /var/www/html/ EXPOSE 443 80 WORKDIR "/var/www/html" |
is this project dead?
is possible to generate a version with PHP 8.4???
The text was updated successfully, but these errors were encountered: