PHP Classes

File: docker/ubuntu18/Dockerfile

Recommend this page to a friend!
  Classes of Punto Waskito   PHP CRUD API   docker/ubuntu18/Dockerfile   Download  
File: docker/ubuntu18/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: 481 bytes
 

Contents

Class file image Download
FROM ubuntu:18.04 ARG DEBIAN_FRONTEND=noninteractive # install: php / mysql / postgres / sqlite / tools RUN apt-get update && apt-get -y install \ php-cli php-xml php-mbstring \ mysql-server mysql-client php-mysql \ postgresql php-pgsql \ postgresql-10-postgis-2.4 \ sqlite3 php-sqlite3 \ git wget # install locales RUN apt-get -y install locales RUN locale-gen en_US.UTF-8 RUN update-locale LANG=en_US.UTF-8 # install run script ADD run.sh /usr/sbin/docker-run CMD docker-run