Spaces:
Runtime error
Runtime error
# 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"] | |