Brand_Recognition / Dockerfile
Sadashiv's picture
updated run command
9c3567a
raw
history blame contribute delete
265 Bytes
# 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"]