Skip to content

Commit f2b7734

Browse files
committed
Update to watchdog versions
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
1 parent 69ca16a commit f2b7734

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

template/dockerfile/function/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
FROM ghcr.io/openfaas/classic-watchdog:0.3.3 AS watchdog
1+
FROM ghcr.io/openfaas/classic-watchdog:0.3.4 AS watchdog
22

3-
FROM alpine:3.21.3
3+
FROM alpine:3.22.1
44

55
RUN mkdir -p /home/app
66

template/java11-vert-x/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ COPY . /home/app/
2727

2828
RUN gradle build
2929

30-
FROM ghcr.io/openfaas/of-watchdog:0.10.9 AS watchdog
30+
FROM ghcr.io/openfaas/of-watchdog:0.10.11 AS watchdog
3131
FROM openjdk:11-jre-slim AS ship
3232

3333
COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog

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.10.9 AS watchdog
31+
FROM ghcr.io/openfaas/of-watchdog:0.10.11 AS watchdog
3232

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

template/java17/Dockerfile

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

32-
FROM ghcr.io/openfaas/of-watchdog:0.10.9 AS watchdog
32+
FROM ghcr.io/openfaas/of-watchdog:0.10.11 AS watchdog
3333

3434
FROM openjdk:17-slim AS ship
3535
RUN apt-get update -qqy \

template/node18/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.10.9 AS watchdog
1+
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.10.11 AS watchdog
22
FROM --platform=${TARGETPLATFORM:-linux/amd64} node:18-alpine AS ship
33

44
ARG TARGETPLATFORM

template/node20/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.10.9 AS watchdog
1+
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.10.11 AS watchdog
22
FROM --platform=${TARGETPLATFORM:-linux/amd64} node:20-alpine AS ship
33

44
ARG TARGETPLATFORM

template/node22/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.10.9 AS watchdog
1+
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.10.11 AS watchdog
22
FROM --platform=${TARGETPLATFORM:-linux/amd64} node:22-alpine AS ship
33

44
ARG TARGETPLATFORM

template/php7/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG TARGETPLATFORM
22
ARG BUILDPLATFORM
33

4-
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/classic-watchdog:0.3.2 AS watchdog
4+
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/classic-watchdog:0.3.4 AS watchdog
55

66
# start with the official Composer image and name it
77
FROM --platform=${TARGETPLATFORM:-linux/amd64} composer:1 AS composer

template/php8/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
ARG TARGETPLATFORM
22
ARG BUILDPLATFORM
33

4-
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/classic-watchdog:0.3.2 AS watchdog
4+
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/classic-watchdog:0.3.4 AS watchdog
55

66
# start with the official Composer image and name it
77
FROM --platform=${TARGETPLATFORM:-linux/amd64} composer:latest AS composer

0 commit comments

Comments
 (0)