Skip to content

Instantly share code, notes, and snippets.

@jepser
Created March 12, 2018 21:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jepser/527e1edb9078c7b2179c45859ef2bdd3 to your computer and use it in GitHub Desktop.
Save jepser/527e1edb9078c7b2179c45859ef2bdd3 to your computer and use it in GitHub Desktop.
Docker - Ubuntu 16.04 and PHP 7.1
RUN apt-get update -y
RUN apt-get install -y software-properties-common python-software-properties language-pack-en-base
RUN LC_ALL=en_US.UTF-8 add-apt-repository -y ppa:ondrej/php
RUN apt-get update -y
RUN apt-get install -y \
curl \
git \
php7.1-cli \
php7.1 \
php7.1-gd \
php7.1-json \
php7.1-ldap \
php7.1-mbstring \
php7.1-mysql \
php7.1-pgsql \
php7.1-sqlite3 \
php7.1-xml \
php7.1-xsl \
php7.1-zip \
php7.1-soap \
ssh
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment