PHP Classes

File: docker/dockerfile-php-laravel

Recommend this page to a friend!
  Classes of Celso   DB Sync   docker/dockerfile-php-laravel   Download  
File: docker/dockerfile-php-laravel
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: DB Sync
Synchronize databases between environments
Author: By
Last change:
Date: 1 month ago
Size: 658 bytes
 

Contents

Class file image Download
# Base image to run FROM php:8.3.9-cli-alpine3.20 # Update alpine image and install packeges RUN apk --update --no-cache add curl zip # Install packages to run PHP/laravel and our app RUN apk --update --no-cache add php83-bcmath \ composer \ php83-bz2 \ php83-calendar \ php83-exif \ php83-gd \ php83-gettext \ php83-opcache \ php83-pcntl \ php83-zip \ php83-tokenizer \ php83-session \ php83-dom \ php83-xml \ php83-xmlwriter \ php83-xmlreader \ php83-fileinfo # Use php.ini-production as php.ini and add extra.ini RUN ln -s /usr/local/etc/php/php.ini-production /usr/local/etc/php/php.ini