Spaces:
Starting
Starting
Add Dockerfile for brand recognition app
Browse files- 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"]
|