Commit ·
d192588
1
Parent(s): dbbeb67
se modifico README
Browse files- README.md +2 -0
- examen/dockerfile +6 -0
- examen/index.php +5 -0
README.md
CHANGED
|
@@ -5,6 +5,8 @@ colorFrom: green
|
|
| 5 |
colorTo: yellow
|
| 6 |
sdk: docker
|
| 7 |
pinned: false
|
|
|
|
|
|
|
| 8 |
---
|
| 9 |
|
| 10 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
| 5 |
colorTo: yellow
|
| 6 |
sdk: docker
|
| 7 |
pinned: false
|
| 8 |
+
license: cc-by-nc-nd-4.0
|
| 9 |
+
app-port: 7860
|
| 10 |
---
|
| 11 |
|
| 12 |
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
examen/dockerfile
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM php:8.2-cli
|
| 2 |
+
EXPOSE 7860
|
| 3 |
+
COPY examen examen
|
| 4 |
+
EXPOSE 7860
|
| 5 |
+
WORKDIR /examen
|
| 6 |
+
CMD ["php","-S", "0.0.0.0:7860"]
|
examen/index.php
ADDED
|
@@ -0,0 +1,5 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
<?php include_once('inc/header.php');?>
|
| 2 |
+
<?php
|
| 3 |
+
echo "Estrella, 216w0349, ISC, Mixto";
|
| 4 |
+
?>
|
| 5 |
+
<?php include_once('inc/footer.php');?>
|