This commit is contained in:
fredrik 2023-10-31 11:15:13 +01:00
commit 1fd09eaabb
2 changed files with 8 additions and 0 deletions

7
Dockerfile Normal file
View File

@ -0,0 +1,7 @@
FROM php:7.4-cli
WORKDIR /app
COPY index.php /app
CMD ["php", "index.php"]

1
index.php Normal file
View File

@ -0,0 +1 @@
Hell<?php echo "o World"; ?>