apple health data will soon be out in the world...

This commit is contained in:
2025-07-10 23:42:11 -05:00
parent 9e98162d2d
commit 3d382abf06
12 changed files with 320 additions and 8 deletions

View File

@@ -0,0 +1,6 @@
FROM python:3.9
WORKDIR /app
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["python", "app.py"]