PHP Classes

File: bench/Dockerfile

Recommend this page to a friend!
  Packages of Roni   Easy-Excel   bench/Dockerfile   Download  
File: bench/Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Easy-Excel
Export and read XLSX files with a PHP Go extension
Author: By
Last change:
Date: 6 days ago
Size: 341 bytes
 

Contents

Class file image Download
# Bench container for the competitor libraries (OpenSpout and # fast-excel-writer need ext-zip, which php:*-cli doesn't ship). ARG PHP_VERSION=8.5 FROM php:${PHP_VERSION}-cli RUN apt-get update \ && apt-get install -y --no-install-recommends libzip-dev \ && docker-php-ext-install zip \ && rm -rf /var/lib/apt/lists/* WORKDIR /repo/bench