initial version

This commit is contained in:
2023-10-30 23:15:40 +01:00
commit 8f8c69c37a
13 changed files with 321 additions and 0 deletions

10
raspberryPi/Dockerfile Normal file
View File

@ -0,0 +1,10 @@
FROM python:3.9.18
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY src .
CMD ["python", "./main.py"]