Sadashiv commited on
Commit
1114e1e
1 Parent(s): d4ba2a6

Add Dockerfile for brand recognition app

Browse files
Files changed (1) hide show
  1. Dockerfile +8 -0
Dockerfile ADDED
@@ -0,0 +1,8 @@
 
 
 
 
 
 
 
 
 
1
+ # Pull the Docker image from Docker Hub
2
+ FROM sada07/brand_recognition:latest
3
+
4
+ # (Optional) Expose the port if needed for Hugging Face to access it
5
+ EXPOSE 5000
6
+
7
+ # Start the Flask application
8
+ CMD ["python", "app.py"]