SuriRaja commited on
Commit
3fd3fa9
·
verified ·
1 Parent(s): b3462e5

Upload 4 files

Browse files
Files changed (4) hide show
  1. .huggingface.yml +1 -0
  2. Dockerfile +4 -0
  3. README.md +1 -1
  4. 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
- Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
 
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>