Fix MQTT connection

This commit is contained in:
2025-12-29 15:10:27 +01:00
parent dd57019c99
commit 0a6081ee6e
4 changed files with 28 additions and 10 deletions

View File

@@ -7,11 +7,11 @@ COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
ENV PYTHONUNBUFFERED=1
ENV FLASK_APP=app.py
ENV FLASK_RUN_HOST=0.0.0.0
ENV FLASK_RUN_PORT=5000
EXPOSE 5000
CMD ["flask", "run"]
CMD ["python", "app.py"]