Skip to content

Instantly share code, notes, and snippets.

@ha3an-118
Forked from kubaceg/Dockerfile
Created February 14, 2023 13:02
Show Gist options
  • Save ha3an-118/bd190d3102c70fa988d3cbf2d2fea4d6 to your computer and use it in GitHub Desktop.
Save ha3an-118/bd190d3102c70fa988d3cbf2d2fea4d6 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
@ha3an-118
Copy link
Author

tanks it's work

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment