perahh commited on
Commit
132c4f4
1 Parent(s): 9005898

Crear index.php

Browse files
Files changed (2) hide show
  1. Dockerfile +4 -0
  2. app/index.php +3 -0
Dockerfile ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ FROM: php:8.2-cli
2
+ WORKDIR /rood
3
+ COPY ./app/ ./app/
4
+ CMD["php", "-S", "0.0.0.0.:7860", "./app/index.php"]
app/index.php ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ <?php
2
+ echo("<h1>Hola</h1>");
3
+ <?