Skip to content

Instantly share code, notes, and snippets.

@jcbombardelli
Created April 2, 2020 14:58
Show Gist options
  • Save jcbombardelli/b45b3a687b21408fec3eeceaa1f2873d to your computer and use it in GitHub Desktop.
Save jcbombardelli/b45b3a687b21408fec3eeceaa1f2873d to your computer and use it in GitHub Desktop.
FROM php:7.3-cli
RUN pecl install swoole \
&& docker-php-ext-enable swoole
COPY index.php /var/www
EXPOSE 9501
ENTRYPOINT [ "php","/var/www/index.php","start" ]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment