Created
April 21, 2020 06:06
-
-
Save anibal21/fc48543491caff3faec7358ce345e20a to your computer and use it in GitHub Desktop.
Dockerfile for old php5.6 projects
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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