Compare commits

..

No commits in common. "main" and "item-specifications" have entirely different histories.

3 changed files with 8 additions and 13 deletions

View file

@ -1,19 +1,10 @@
FROM python:3.13.11-alpine3.23 AS builder
FROM python:3
RUN apk add --no-cache gcc g++ musl-dev rust cargo patchelf
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
FROM python:3.13.11-alpine3.23
COPY --from=builder /usr/local/lib/python3.13/site-packages /usr/local/lib/python3.13/site-packages
RUN apk add --no-cache libstdc++
WORKDIR /usr/src/app
COPY . .
CMD [ "python", "-u", "./main.py" ]

5
compose.yml Normal file
View file

@ -0,0 +1,5 @@
services:
server:
build: .
env_file: .env

View file

@ -51,7 +51,6 @@ class BringPlugin:
self.webhook_url = os.getenv("WEBHOOK_URL")
self.bring = None
self.existing_list = None
print(f"email: {self.email}")
async def grab_items(self, bring_list):
"""Grabs the items of the list using the list's uuid"""