PHP Classes

File: docker/debian10/Dockerfile

Recommend this page to a friend!
  Classes of Punto Waskito   PHP CRUD API   docker/debian10/Dockerfile   Download  
File: docker/debian10/Dockerfile
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: PHP CRUD API
Provide API to manipulate database table records
Author: By
Last change:
Date: 3 years ago
Size: 383 bytes
 

Contents

Class file image Download
FROM debian:10 ARG DEBIAN_FRONTEND=noninteractive # install: php / mysql / postgres / sqlite / tools / mssql deps RUN apt-get update && apt-get -y install \ php-cli php-xml php-mbstring \ mariadb-server mariadb-client php-mysql \ postgresql php-pgsql \ postgresql-11-postgis-2.5 \ sqlite3 php-sqlite3 \ git wget # install run script ADD run.sh /usr/sbin/docker-run CMD docker-run