File size: 385 Bytes
084f878
716a760
e357450
084f878
a97e432
 
084f878
 
 
 
 
a97e432
084f878
572aa84
084f878
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Use a base image with Python and necessary tools installed
FROM python:3.10-slim

# Set the working directory
WORKDIR /app

# Copy your holehe script and requirements
COPY . /app

# Install any necessary dependencies (if any)
RUN pip install holehe flask requests  # Adjust as needed

# Expose a port for the web app
EXPOSE 7860
# Command to run the web app
CMD ["python", "app.py"]