We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 11e42a9 commit 7bba70bCopy full SHA for 7bba70b
.docker/apache.dockerfile
@@ -0,0 +1,8 @@
1
+FROM php:8.2-apache
2
+
3
+RUN apt-get update \
4
+ && apt-get install -y libicu-dev
5
6
+RUN mkdir /var/www/html/PHP-Frameworks-Bench
7
8
+RUN docker-php-ext-install intl
apache.sh
@@ -0,0 +1,5 @@
+docker build --tag bench/apache -f .docker/apache.dockerfile .
+echo "Runing apache in http://127.0.0.1:8080"
+docker run -it -p 8080:80 -v "$PWD":/var/www/html/PHP-Frameworks-Bench:rw bench/apache:latest
0 commit comments