File size: 265 Bytes
1114e1e
 
 
 
 
 
9c3567a
 
1114e1e
 
1
2
3
4
5
6
7
8
9
10
11
# Pull the Docker image from Docker Hub
FROM sada07/brand_recognition:latest

# (Optional) Expose the port if needed for Hugging Face to access it
EXPOSE 5000

RUN mkdir -p /app/logs && chmod -R 777 /app/logs

# Start the Flask application
CMD ["python", "app.py"]