Upload 4 files
Browse files- .huggingface.yml +1 -0
- Dockerfile +4 -0
- README.md +1 -1
- out/index.html +1 -0
.huggingface.yml
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
sdk: docker
|
Dockerfile
ADDED
|
@@ -0,0 +1,4 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
FROM nginx:alpine
|
| 2 |
+
COPY out /usr/share/nginx/html
|
| 3 |
+
EXPOSE 80
|
| 4 |
+
CMD ["nginx", "-g", "daemon off;"]
|
README.md
CHANGED
|
@@ -8,4 +8,4 @@ pinned: false
|
|
| 8 |
license: mit
|
| 9 |
---
|
| 10 |
|
| 11 |
-
|
|
|
|
| 8 |
license: mit
|
| 9 |
---
|
| 10 |
|
| 11 |
+
Welcome to **Exp4** — a Hugging Face Space powered by a static export of a Next.js app, served via NGINX and Docker.
|
out/index.html
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
<!DOCTYPE html><html><head><title>Exp4</title></head><body><h1>Welcome to Exp4</h1></body></html>
|