Skip to content

Instantly share code, notes, and snippets.

@anibal21
Created April 21, 2020 06:06
Show Gist options
  • Save anibal21/fc48543491caff3faec7358ce345e20a to your computer and use it in GitHub Desktop.
Save anibal21/fc48543491caff3faec7358ce345e20a to your computer and use it in GitHub Desktop.
Dockerfile for old php5.6 projects
FROM php:5.6-apache
RUN apt-get update
RUN apt-get install -y apt-utils
RUN apt-get install -y libpq-dev
RUN apt-get install -y mcrypt libmcrypt-dev
RUN apt-get install -y zlib1g-dev
RUN docker-php-ext-install pdo_pgsql pgsql mcrypt zip
RUN apt-get install nano
COPY . /var/www/html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment