diff --git a/Dockerfile b/Dockerfile index fdcec13..f8f78d9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -4,4 +4,12 @@ WORKDIR /app COPY builds/network-watcher /app/network-watcher +RUN docker-php-ext-configure bcmath --enable-bcmath && \ + docker-php-ext-configure pcntl --enable-pcntl && \ + docker-php-ext-configure mbstring --enable-mbstring && \ + docker-php-ext-install bcmath intl mbstring pcntl sockets zip + +RUN docker-php-ext-configure intl --with-icu-dir=/usr/local && \ + docker-php-ext-install intl + CMD ["/app/network-watcher", "network:watch"]