Compare commits
No commits in common. "main" and "item-specifications" have entirely different histories.
main
...
item-speci
3 changed files with 8 additions and 13 deletions
13
Dockerfile
13
Dockerfile
|
|
@ -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 ./
|
COPY requirements.txt ./
|
||||||
RUN pip install --no-cache-dir -r 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 . .
|
COPY . .
|
||||||
|
|
||||||
CMD [ "python", "-u", "./main.py" ]
|
CMD [ "python", "-u", "./main.py" ]
|
||||||
5
compose.yml
Normal file
5
compose.yml
Normal file
|
|
@ -0,0 +1,5 @@
|
||||||
|
services:
|
||||||
|
server:
|
||||||
|
build: .
|
||||||
|
env_file: .env
|
||||||
|
|
||||||
1
main.py
1
main.py
|
|
@ -51,7 +51,6 @@ class BringPlugin:
|
||||||
self.webhook_url = os.getenv("WEBHOOK_URL")
|
self.webhook_url = os.getenv("WEBHOOK_URL")
|
||||||
self.bring = None
|
self.bring = None
|
||||||
self.existing_list = None
|
self.existing_list = None
|
||||||
print(f"email: {self.email}")
|
|
||||||
|
|
||||||
async def grab_items(self, bring_list):
|
async def grab_items(self, bring_list):
|
||||||
"""Grabs the items of the list using the list's uuid"""
|
"""Grabs the items of the list using the list's uuid"""
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue