7 lines
73 B
Docker
7 lines
73 B
Docker
FROM php
|
|
|
|
COPY index.php /app/index.php
|
|
|
|
WORKDIR /app
|
|
|
|
CMD php index.php
|