Niansuh1 commited on
Commit
e2fe4f2
·
verified ·
1 Parent(s): 596c655

Create Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +16 -0
Dockerfile ADDED
@@ -0,0 +1,16 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Hugging Face Spaces Dockerfile
2
+ # Uses pre-built image from Docker Hub
3
+
4
+ FROM niansuh/test:v122
5
+
6
+ # Hugging Face Spaces runs on port 7860
7
+ ENV PORT=7860
8
+
9
+ # Set environment variables (these will be overridden by HF Secrets)
10
+ ENV NODE_ENV=production
11
+
12
+ # Expose port for Hugging Face
13
+ EXPOSE 7860
14
+
15
+ # Start the application
16
+ CMD ["python", "main.py"]