We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7e3e7f commit 6a8c137Copy full SHA for 6a8c137
Dockerfile
@@ -1,6 +1,6 @@
1
FROM dunglas/frankenphp
2
3
-COPY . /app
+ENV SERVER_NAME=:9000
4
5
RUN apt-get update && apt-get install -y git libicu-dev libzip-dev libpng-dev zip unzip libxml2-dev
6
@@ -10,4 +10,6 @@ RUN docker-php-ext-install intl pdo_sqlite zip gd xml
10
11
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer
12
13
+COPY . /app
14
+
15
RUN composer install
docker-compose.yml
@@ -5,8 +5,7 @@ services:
context: .
dockerfile: Dockerfile
7
ports:
8
- - 80:80
9
- - 443:443
+ - 9000:9000
volumes:
- ./:/app
tty: true
0 commit comments