Affected Docker Images
serversideup/php:8.2-fpm-nginx
Current Behavior
My deploy has just broken because -- assuming I'm reading this correctly; I could be an idiot -- it's trying to install PHP 8.3 and associated libraries.
Last week the same automated process ran without mention of PHP 8.3.
Expected Behavior
Everything should be PHP 8.2.
Steps To Reproduce
My automated deploy runs with a[n unchanged] Dockerfile:
FROM serversideup/php:8.2-fpm-nginx as production
EXPOSE 80
ARG USERID
ARG GROUPID
ENV SSL_MODE=off
WORKDIR /var/www/html
COPY --chown=${USERID:-1000}:${GROUPID:-1000} . .
VOLUME [ "/var/www/html/storage" ]
RUN apt-get update \
&& apt-get install -y php-imagick php-redis
RUN composer install --no-interaction --optimize-autoloader --no-dev
FROM production as dev
RUN apt-get install -y php-xdebug
I have an automated process that builds that dockerfile and deploys it.
Host Operating System
Github Actions "ubuntu-latest" runner
Docker Version
Anything else?
No response
Affected Docker Images
serversideup/php:8.2-fpm-nginx
Current Behavior
My deploy has just broken because -- assuming I'm reading this correctly; I could be an idiot -- it's trying to install PHP 8.3 and associated libraries.
Last week the same automated process ran without mention of PHP 8.3.
Expected Behavior
Everything should be PHP 8.2.
Steps To Reproduce
My automated deploy runs with a[n unchanged] Dockerfile:
I have an automated process that builds that dockerfile and deploys it.
Host Operating System
Github Actions "ubuntu-latest" runner
Docker Version
Anything else?
No response