Skip to content

Commit 062b153

Browse files
authored
maintain versions (#11)
1 parent 73b68b7 commit 062b153

File tree

3 files changed

+10
-9
lines changed

3 files changed

+10
-9
lines changed

Dockerfile

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1-
FROM alpine:3.21.3
1+
FROM alpine:3.23.2
22

33
LABEL maintainer="Michael Oberdorf IT-Consulting <info@oberdorf-itc.de>"
4-
LABEL site.local.program.version="1.1.1"
4+
LABEL site.local.program.version="1.1.2"
55

66
ENV TZ=Europe/Berlin \
77
REQUESTS_CA_BUNDLE=/etc/ssl/certs/ca-certificates.crt \
@@ -11,10 +11,10 @@ COPY --chown=root:root /src /
1111

1212
RUN apk upgrade --available --no-cache --update \
1313
&& apk add --no-cache --update \
14-
python3=3.12.9-r0 \
15-
py3-pip=24.3.1-r0 \
16-
ca-certificates=20241121-r1 \
17-
tzdata=2025a-r0 \
14+
python3=3.12.12-r0 \
15+
py3-pip=25.1.1-r1 \
16+
ca-certificates=20251003-r0 \
17+
tzdata=2025c-r0 \
1818
# Cleanup APK
1919
&& rm -rf /var/cache/apk/* /tmp/* /var/tmp/* \
2020
# Using PIP to install Python pacakges

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,8 @@ Container image: [DockerHub](https://hub.docker.com/r/oitc/snmp2mqtt)
2424

2525
# Supported tags and respective `Dockerfile` links
2626

27-
* [`latest`, `1.1.1`](https://github.com/cybcon/docker.snmp2mqtt/blob/v1.1.1/Dockerfile)
27+
* [`latest`, `1.1.2`](https://github.com/cybcon/docker.snmp2mqtt/blob/v1.1.2/Dockerfile)
28+
* [`1.1.1`](https://github.com/cybcon/docker.snmp2mqtt/blob/v1.1.1/Dockerfile)
2829
* [`1.0.4`](https://github.com/cybcon/docker.snmp2mqtt/blob/v1.0.4/Dockerfile)
2930
* [`1.0.3`](https://github.com/cybcon/docker.snmp2mqtt/blob/v1.0.3/Dockerfile)
3031
* [`1.0.2`](https://github.com/cybcon/docker.snmp2mqtt/blob/v1.0.2/Dockerfile)

src/app/bin/snmp2mqtt.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Author: Michael Oberdorf
66
Date: 2021-08-14
77
Last modified by: Michael Oberdorf
8-
Last modified at: 2025-03-24
8+
Last modified at: 2025-12-28
99
*************************************************************************** """
1010
import asyncio
1111
import datetime
@@ -38,7 +38,7 @@
3838
get_cmd,
3939
)
4040

41-
VERSION = "1.1.1"
41+
VERSION = "1.1.2"
4242

4343
script_path = os.path.dirname(__file__)
4444
base_path = os.path.dirname(script_path)

0 commit comments

Comments
 (0)