Skip to content

Commit 3cd59e1

Browse files
committed
updates
1 parent c127982 commit 3cd59e1

7 files changed

+10
-10
lines changed

c-mqtt-forwarder.alpine.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ RUN \
2727

2828
WORKDIR /usr/src/c-mqtt-forwarder
2929

30-
RUN cmake . ; \
30+
RUN cmake . -DCMAKE_POLICY_VERSION_MINIMUM=3.5 ; \
3131
make ; \
3232
make install
3333

prometheus-mosquitto-exporter.debian.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# docker build --no-cache --progress=plain -t tobi312/tools:prometheus-mosquitto-exporter -f prometheus-mosquitto-exporter.debian.Dockerfile .
2-
FROM rust:1.82-slim-bookworm AS builder
2+
FROM rust:1.92-slim-trixie AS builder
33

44
ARG VERSION=master
55
ENV RUST_BACKTRACE=1

prometheus-mqtt-transport.debian.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# docker build --no-cache --progress=plain -t tobi312/tools:prometheus-mqtt-transport -f prometheus-mqtt-transport.debian.Dockerfile .
2-
FROM rust:1.82-slim-bookworm AS builder
2+
FROM rust:1.92-slim-trixie AS builder
33

44
ARG VERSION=master
55
ENV RUST_BACKTRACE=1

static-nginx.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# build: docker build --no-cache --progress=plain --target binary --build-arg NGINX_VERSION=1.29.1 -t tobi312/tools:static-nginx -f static-nginx.Dockerfile .
22
FROM alpine:latest AS builder
33

4-
ARG PCRE2_VERSION=10.46
4+
ARG PCRE2_VERSION=10.47
55
ARG ZLIB_VERSION=1.3.1
66
ARG OPENSSL_VERSION=3.5.4
7-
ARG NGINX_VERSION=1.29.1
7+
ARG NGINX_VERSION=1.29.4
88

99
ARG VCS_REF
1010

static-nginx.unprivileged-nginxuser.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
# build: docker build --no-cache --progress=plain --target binary --build-arg NGINX_VERSION=1.29.1 -t tobi312/tools:static-nginx-unprivileged-nginxuser -f static-nginx.unprivileged-nginxuser.Dockerfile .
22
FROM alpine:latest AS builder
33

4-
ARG PCRE2_VERSION=10.46
4+
ARG PCRE2_VERSION=10.47
55
ARG ZLIB_VERSION=1.3.1
66
ARG OPENSSL_VERSION=3.5.4
7-
ARG NGINX_VERSION=1.29.1
7+
ARG NGINX_VERSION=1.29.4
88

99
ARG VCS_REF
1010

static-ssh-tools.Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# build: docker build --no-cache --progress=plain --target binary -t tobi312/tools:static-ssh-tools -f static-ssh-tools.Dockerfile .
22
FROM alpine:latest AS builder
33

4-
ARG OPENSSH_VERSION=10.0p1
4+
ARG OPENSSH_VERSION=10.2p1
55
ARG SSHPASS_VERSION=1.10
66
ARG XXHASH_VERSION=0.8.3
77
ARG RSYNC_VERSION=3.4.1

toolbox_extended.multiarch.alpine.Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ SHELL ["/bin/ash", "-euxo", "pipefail", "-c"]
99
# hadolint ignore=DL3018
1010
RUN apk add --no-cache \
1111
mariadb-client mariadb-backup \
12-
postgresql15-client postgresql16-client postgresql17-client \
12+
postgresql16-client postgresql17-client postgresql18-client \
1313
mongodb-tools \
1414
mosquitto-clients \
1515
; \
16-
#ln -snf /usr/libexec/postgresql15 /usr/libexec/postgresql ; \
16+
#ln -snf /usr/libexec/postgresql18 /usr/libexec/postgresql ; \
1717
mariadb --version ; \
1818
psql --version ; \
1919
mongostat --version | grep mongostat ; \

0 commit comments

Comments
 (0)