Compare commits

...

11 Commits

Author SHA1 Message Date
jcabillot a50210db32 Merge pull request 'chore: remove all pushbullet references' (#11) from chore/remove-pushbullet into master
Docker Build and Push / build (push) Successful in 43s
Reviewed-on: #11
2026-06-11 08:13:19 -04:00
Sagent 4e074608f5 chore: remove all pushbullet references
Docker Build and Push / build (pull_request) Successful in 30s
2026-06-11 12:12:25 +00:00
cloudix_mcp_server 2b5e3ceb63 Merge pull request 'Update dependency xmltodict to v1' (#5) from renovate/xmltodict-1.x into master
Docker Build and Push / build (push) Successful in 1m14s
2026-06-10 19:23:18 -04:00
jcabillot 2a31917f3c Merge pull request 'Migrate Renovate config' (#10) from renovate/migrate-config into master
Reviewed-on: #10
2026-06-09 14:11:57 -04:00
jcabillot 47eb3d7828 Merge pull request 'Update python Docker tag to v3.14' (#9) from renovate/python-3.x into master
Docker Build and Push / build (push) Successful in 1m1s
Reviewed-on: #9
2026-06-09 14:11:32 -04:00
renovate c9561311af Migrate config renovate.json
Docker Build and Push / build (pull_request) Successful in 39s
2026-06-09 18:09:50 +00:00
renovate 4db311b069 Update python Docker tag to v3.14
Docker Build and Push / build (pull_request) Successful in 40s
2026-06-09 18:09:35 +00:00
jcabillot 6cb2925d85 Merge pull request 'chore: improve renovate dependency detection' (#7) from chore/renovate into master
Docker Build and Push / build (push) Successful in 2m32s
Reviewed-on: #7
2026-06-09 14:04:04 -04:00
jcabillot e850e9e502 Merge pull request 'Pin dependencies' (#8) from renovate/pin-dependencies into master
Docker Build and Push / build (push) Successful in 57s
Reviewed-on: #8
2026-06-09 11:59:27 -04:00
Sagent 7e1314b703 chore: improve renovate dependency detection
Docker Build and Push / build (pull_request) Successful in 33s
2026-06-09 12:55:04 +00:00
renovate 3b76ecd5ec Update dependency xmltodict to v1
perso/huawei-3G-SMS-API/pipeline/pr-master This commit looks good
2026-05-27 00:33:01 +00:00
4 changed files with 16 additions and 13 deletions
+2 -2
View File
@@ -1,12 +1,12 @@
# syntax=docker.io/docker/dockerfile:1
FROM "python:3.11-alpine" AS pipdependencies
FROM python:3.14-alpine AS pipdependencies
COPY app/requirements.txt /requirements.txt
RUN pip3 install --no-cache-dir --user --requirement requirements.txt
FROM "python:3.11-alpine"
FROM python:3.14-alpine
LABEL maintainer="Cabillot Julien <dockerimages@cabillot.eu>"
# TODO: à tester
+1 -2
View File
@@ -1,2 +1 @@
pushbullet.py==0.11.0
xmltodict==0.12.0
xmltodict==1.0.4
-9
View File
@@ -6,13 +6,8 @@ import xmltodict
import requests
import json
import time
# TODO: disabled api excess
#from pushbullet import Pushbullet
import subprocess
# TODO: disabled api excess
#pb = Pushbullet(os.environ['PB_APIKEY'])
pin = os.environ['PIN']
PIN_ENTER_TEMPLATE = '''<request>
@@ -162,10 +157,6 @@ if __name__ == "__main__":
# Text
f3.write(messages[i] + '\n')
# Pushbullet
print('# Notif pushbullet')
# TODO: disabled api excess
#pb.push_note("SMS", "From: %s\nDate: %s\n%s" % (messagesR[i]['Phone'], messagesR[i]['Date'], messagesR[i]['Content']))
# NTFY
# TODO: exec ntfy publish
+13
View File
@@ -0,0 +1,13 @@
{
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
"customManagers": [
{
"customType": "regex",
"description": "Track ntfy binary in COPY --from",
"managerFilePatterns": ["/^Dockerfile$/"],
"matchStrings": ["COPY --from=binwiederhier/ntfy:(?<currentValue>[^\\s]+)"],
"depNameTemplate": "binwiederhier/ntfy",
"datasourceTemplate": "docker"
}
]
}