change to github instead of pip

This commit is contained in:
ash
2026-04-03 18:13:52 +01:00
parent 6b97b3ce19
commit cc5f4c6435
3 changed files with 28 additions and 8 deletions
+6
View File
@@ -2,8 +2,14 @@ FROM python:3.11-slim
WORKDIR /app
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
RUN pip install --no-cache-dir git+https://github.com/cyberjunky/python-garminconnect.git@react
COPY . .
EXPOSE 5000