Skip to content
Prev Previous commit
Next Next commit
Add PHP version check and installed modules
Added commands to check PHP version and installed modules.
  • Loading branch information
macbre authored Nov 6, 2025
commit 132b9b6a0922d1822c6a60965c53785d12fc9cef
4 changes: 4 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@ RUN /usr/bin/composer -v
# PHP
#
FROM php:$PHP_VERSION-cli-alpine AS php

# check what's already installed
RUN php -v; php -m

RUN apk add \
bzip2-dev \
libsodium-dev \
Expand Down
Loading