File size: 329 Bytes
b746881
 
 
 
 
 
e8f8f40
b746881
 
e8f8f40
 
b746881
 
 
 
64faf24
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Use Python 3.11 slim image
FROM python:3.11-slim

# Set working directory
WORKDIR /app

# Copy the application files (for display only)
COPY . .

# Expose the web port
EXPOSE 7860

# Set environment variables
ENV PYTHONUNBUFFERED=1

# Run simple HTTP server to display the index.html
CMD ["python", "-m", "http.server", "7860"]