feat(docker): install PHP sockets extension in development environment

Add socket.io/php-socket dependency to support WebSocket functionality
in the development container. Also update package-lock.json to reflect
peer dependency configurations for Socket.IO packages.
This commit is contained in:
Andras Bacsai
2026-02-18 11:04:10 +01:00
parent 84f62c78db
commit b49069f3fc
4 changed files with 18 additions and 19 deletions
+3
View File
@@ -47,6 +47,9 @@ RUN apk add --no-cache \
lsof \
vim
# Install PHP extensions
RUN install-php-extensions sockets
# Configure shell aliases
RUN echo "alias ll='ls -al'" >> /etc/profile && \
echo "alias a='php artisan'" >> /etc/profile && \