Compare commits

...
Sign in to create a new pull request.

3 commits

Author SHA1 Message Date
07518a1f8f update base image, smaller image type (alpine)
Some checks failed
Docker build and publish / build-and-push-image (push) Has been cancelled
2026-01-03 22:42:40 +00:00
f4159bc30d debug log
Some checks are pending
Docker build and publish / build-and-push-image (push) Waiting to run
2026-01-03 21:59:20 +00:00
b57546140b remove unused compose file 2026-01-03 21:59:09 +00:00
3 changed files with 13 additions and 8 deletions

View file

@ -1,10 +1,19 @@
FROM python:3
FROM python:3.13.11-alpine3.23 AS builder
WORKDIR /usr/src/app
RUN apk add --no-cache gcc g++ musl-dev rust cargo patchelf
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" ]
CMD [ "python", "-u", "./main.py" ]

View file

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

View file

@ -51,6 +51,7 @@ 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"""