Skip to content

Commit 52339d5

Browse files
authored
Add files via upload
1 parent a9242a4 commit 52339d5

2 files changed

Lines changed: 12 additions & 0 deletions

File tree

Docker/Dockerfile.correlator

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
FROM python:3.11-slim
2+
WORKDIR /app
3+
COPY services/ /app/services
4+
COPY ai/ /app/ai
5+
COPY requirements.txt /app
6+
RUN pip install -r requirements.txt
7+
CMD ["python", "/app/services/correlator/correlator.py"]

Docker/Dockerfile.sensor

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
FROM python:3.11-slim
2+
WORKDIR /app
3+
COPY pi-sensor/ /app
4+
RUN pip install requests pyyaml bluepy
5+
CMD ["python", "uploader.py"]

0 commit comments

Comments
 (0)