mirror of
https://github.com/denshooter/nulleinspeisung.git
synced 2026-01-21 04:33:03 +01:00
15 lines
364 B
Docker
15 lines
364 B
Docker
# Verwenden Sie ein offizielles Python-Image als Basis
|
|
FROM python:3.12-alpine
|
|
|
|
# Arbeitsverzeichnis im Container festlegen
|
|
WORKDIR /app
|
|
|
|
RUN pip install --upgrade pip
|
|
|
|
# Installieren Sie die benötigten Python-Bibliotheken
|
|
RUN pip install requests
|
|
|
|
# Führen Sie das Python-Skript aus, wenn der Container gestartet wird
|
|
CMD ["python", "/app/Nulleinspeisung.py"]
|
|
|