FROM python:3.11-slim

WORKDIR /app

RUN pip install --no-cache-dir requests

COPY solar_estimate.py /app/

ENTRYPOINT ["python", "solar_estimate.py"]
