Skip to content

Commit 4f78453

Browse files
committed
Update watchdog version to 0.9.1
This version supports longer log lines through a custom environment variable (log_buffer_size). Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 081622a commit 4f78453

File tree

7 files changed

+7
-7
lines changed

7 files changed

+7
-7
lines changed

template/java11-vert-x/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ COPY . /home/app/
2828
RUN gradle build
2929
RUN find .
3030

31-
FROM ghcr.io/openfaas/of-watchdog:0.9.0 as watchdog
31+
FROM ghcr.io/openfaas/of-watchdog:0.9.1 as watchdog
3232
FROM openjdk:11-jre-slim as ship
3333
RUN apt-get update -qqy \
3434
&& apt-get install -qqy \

template/java11/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ COPY . /home/app/
2828
RUN gradle build
2929
RUN find .
3030

31-
FROM ghcr.io/openfaas/of-watchdog:0.9.0 as watchdog
31+
FROM ghcr.io/openfaas/of-watchdog:0.9.1 as watchdog
3232

3333
FROM openjdk:11-jre-slim as ship
3434
RUN apt-get update -qqy \

template/node12-debian/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.9.0 as watchdog
1+
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.9.1 as watchdog
22
FROM --platform=${TARGETPLATFORM:-linux/amd64} node:12 as ship
33

44
ARG TARGETPLATFORM

template/node12/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.9.0 as watchdog
1+
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.9.1 as watchdog
22
FROM --platform=${TARGETPLATFORM:-linux/amd64} node:12-alpine as ship
33

44
ARG TARGETPLATFORM

template/node14/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.9.0 as watchdog
1+
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.9.1 as watchdog
22
FROM --platform=${TARGETPLATFORM:-linux/amd64} node:14-alpine as ship
33

44
ARG TARGETPLATFORM

template/node16/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.9.0 as watchdog
1+
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.9.1 as watchdog
22
FROM --platform=${TARGETPLATFORM:-linux/amd64} node:16-alpine as ship
33

44
ARG TARGETPLATFORM

template/node17/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.9.0 as watchdog
1+
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.9.1 as watchdog
22
FROM --platform=${TARGETPLATFORM:-linux/amd64} node:17-alpine as ship
33

44
ARG TARGETPLATFORM

0 commit comments

Comments
 (0)