initial commit
Some checks failed
Deploy Docker Image / build-and-push (push) Failing after 2m3s

Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
2026-01-15 22:51:39 +01:00
commit 373ff6b6c1
5 changed files with 142 additions and 0 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
# Dockerfile für bambu.py
FROM python:3.11-slim
WORKDIR /app
COPY bambu.py /app/bambu.py
# Optional: requirements.txt falls weitere Pakete benötigt werden
RUN pip install --no-cache-dir paho-mqtt dotenv
CMD ["python", "-u", "bambu.py"]