PerlaHM commited on
Commit
1748b5a
·
1 Parent(s): 24fc347

Cambio a index.php

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