Skip to content

Instantly share code, notes, and snippets.

@samwolf1982
Forked from kubaceg/Dockerfile
Created September 29, 2019 14:14
Show Gist options
  • Select an option

  • Save samwolf1982/07d34671d1501a1ebc2bd508ccf5aaa8 to your computer and use it in GitHub Desktop.

Select an option

Save samwolf1982/07d34671d1501a1ebc2bd508ccf5aaa8 to your computer and use it in GitHub Desktop.
Docker install ioncube extension (php 5.6)
RUN curl -o ioncube.tar.gz http://downloads3.ioncube.com/loader_downloads/ioncube_loaders_lin_x86-64.tar.gz \
&& tar -xvvzf ioncube.tar.gz \
&& mv ioncube/ioncube_loader_lin_5.6.so `php-config --extension-dir` \
&& rm -Rf ioncube.tar.gz ioncube \
&& docker-php-ext-enable ioncube_loader_lin_5.6
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment