# Start from the base image
FROM python:3.12-slim

# Set the working directory
WORKDIR /app

# Copy everything from ./files into the container at /app
COPY files/dashboard.csv /app/dashboard.csv

# Optional: ensure files are readable/executable
RUN chmod -R a+r /app && chmod -R a+x /app

CMD ["sh", "-c", "tail -f /dev/null"]
