Spaces:
Sleeping
Sleeping
Añadido Dockerfile e index.php para la configuración inicial
Browse files- Dockerfile +7 -0
- index.php +1 -0
Dockerfile
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
FROM debian:12.6
|
2 |
+
RUN apt update -y
|
3 |
+
RUN apt upgrade -y
|
4 |
+
RUN apt install -y php
|
5 |
+
|
6 |
+
COPY index.php index.php
|
7 |
+
CMD ["bash", "-c", "php -S 0.0.0.0:7860"]
|
index.php
ADDED
@@ -0,0 +1 @@
|
|
|
|
|
1 |
+
Esta es la evaluación de Esteban Oseguera Martinez con número de control 226w0521 del campus Tezonapa el dia 28 de septiembre de 2024
|