12 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
renovate 1262b60fca Pin dependencies
Docker Build and Push / build (pull_request) Successful in 33s
2026-06-09 15:51:05 +00: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
5 changed files with 19 additions and 16 deletions
+4 -4
View File
@@ -1,12 +1,12 @@
# syntax=docker.io/docker/dockerfile:1@sha256:87999aa3d42bdc6bea60565083ee17e86d1f3339802f543c0d03998580f9cb89
# 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
@@ -19,7 +19,7 @@ WORKDIR "/app"
ENTRYPOINT [ "/app/entrypoint.sh" ]
COPY --from=binwiederhier/ntfy:v2.24.0@sha256:f8a9b104313b87cc24ae4f775f39e6328205b57dff6ede3eaf098a91e5d79f59 /usr/bin/ntfy /usr/local/bin/ntfy
COPY --from=binwiederhier/ntfy:v2.24.0 /usr/bin/ntfy /usr/local/bin/ntfy
RUN mkdir /etc/ntfy
COPY --from=pipdependencies /root/.local /root/.local
+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
+1 -1
View File
@@ -2,7 +2,7 @@ version: '2.3'
services:
app:
image: "jcabillot/huawei-3g-sms-api@sha256:a76358b2ee123d6570b93802e1813e46b9a634065400bae38202c2ded29deb73"
image: "jcabillot/huawei-3g-sms-api"
container_name: "huawei-3g-sms-api"
restart: "unless-stopped"
mem_limit: "256m"
+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"
}
]
}