feat: add basic app that consumes mqtt uplinks from chirpstack
This commit is contained in:
parent
87ffc9cad7
commit
31a1c14831
10 changed files with 570 additions and 0 deletions
6
app/Dockerfile
Normal file
6
app/Dockerfile
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
FROM python:3.13-slim
|
||||
WORKDIR /app
|
||||
COPY requirements.txt .
|
||||
RUN pip install --no-cache-dir -r requirements.txt
|
||||
COPY main.py .
|
||||
CMD ["python", "main.py"]
|
||||
Loading…
Add table
Add a link
Reference in a new issue