Skip to content

Instantly share code, notes, and snippets.

View ralphmujar's full-sized avatar
🏠
Working from home

Ralph Mujar ralphmujar

🏠
Working from home
  • Fligno
  • Philippines
View GitHub Profile
@ralphmujar
ralphmujar / Dockerfile
Created August 2, 2020 11:22 — forked from amitavroy/Dockerfile
Docker setup with Laravel
FROM php:7.2.10-apache-stretch
RUN apt-get update -yqq && \
apt-get install -y apt-utils zip unzip && \
apt-get install -y nano && \
apt-get install -y libzip-dev libpq-dev && \
a2enmod rewrite && \
docker-php-ext-install pdo_pgsql && \
docker-php-ext-install pgsql && \
docker-php-ext-configure zip --with-libzip && \