-
Node
-
InfluxDB
InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
-
Composer
-
-
FROM php:latest # Instalar unzip RUN apt update && apt install -y unzip # Instalar Composer de outra forma, mas com o mesmo resultado RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer # Configurar as variáveis de ambiente ENV HOME="/root" ENV PATH="/root/.composer/vendor/bin:${PATH}:/root/.bun/bin" # Instalar Bun RUN curl -fsSL https://bun.sh/install | bash # Criar alguns symlinks para o executável bun RUN ln -s $(which bun) /usr/local/bin/npm RUN ln -s $(which bunx) /usr/local/bin/npx # Instalar o Laravel Installer RUN composer global require laravel/installer # Instalar a extensão pcntl RUN docker-php-ext-install pcntl