0fcb20ae1c
Erstellt monatliche Wetterdiagramme (Temperatur Min/Max, Stundenmittel, Niederschlag) aus der Wetterstation-API und verschickt sie per Mail. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
13 lines
196 B
Docker
13 lines
196 B
Docker
FROM python:3.12-slim
|
|
|
|
WORKDIR /app
|
|
|
|
COPY requirements.txt .
|
|
RUN pip install --no-cache-dir -r requirements.txt
|
|
|
|
COPY weather_report.py .
|
|
|
|
RUN mkdir -p images
|
|
|
|
CMD ["python", "weather_report.py"]
|