Skip to content

Commit

Permalink
Update PHP base image in Dockerfile
Browse files Browse the repository at this point in the history
Changed the PHP base image from 'php:8.3-zts-alpine' to 'php:8.3-cli-alpine' in the Dockerfile. This modification will provide a more suitable environment for executing CLI-based PHP scripts and ensure operational efficiency.
  • Loading branch information
SmetDenis committed Apr 10, 2024
1 parent 096ad39 commit 76ae742
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ COPY . /tmp
RUN make build-version

########################################################################################
FROM php:8.3-zts-alpine
FROM php:8.3-cli-alpine

# Install PHP extensions
ADD --chmod=0755 https://github.com/mlocati/docker-php-extension-installer/releases/latest/download/install-php-extensions /usr/local/bin/
Expand Down

0 comments on commit 76ae742

Please sign in to comment.