Skip to content

Commit

Permalink
Update of-watchdog to 0.10.7 and alpine to 3.21.2
Browse files Browse the repository at this point in the history
Signed-off-by: Alex Ellis (OpenFaaS Ltd) <[email protected]>
  • Loading branch information
alexellis committed Jan 17, 2025
1 parent 5816995 commit c77df2a
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion template/bun/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.10.6 AS watchdog
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.10.7 AS watchdog
FROM --platform=${TARGETPLATFORM:-linux/amd64} oven/bun:1.0-alpine AS ship

ARG TARGETPLATFORM
Expand Down
2 changes: 1 addition & 1 deletion template/dockerfile/function/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
FROM ghcr.io/openfaas/classic-watchdog:0.3.1 AS watchdog

FROM alpine:3.20.3
FROM alpine:3.21.2

RUN mkdir -p /home/app

Expand Down
2 changes: 1 addition & 1 deletion template/go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ WORKDIR /go/src/handler
RUN GOOS=${TARGETOS} GOARCH=${TARGETARCH} CGO_ENABLED=${CGO_ENABLED} \
go build --ldflags "-s -w" -o handler .

FROM --platform=${TARGETPLATFORM:-linux/amd64} alpine:3.20.3 AS ship
FROM --platform=${TARGETPLATFORM:-linux/amd64} alpine:3.21.2 AS ship

RUN apk --no-cache add ca-certificates \
&& addgroup -S app && adduser -S -g app app
Expand Down
2 changes: 1 addition & 1 deletion template/java11-vert-x/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ COPY . /home/app/

RUN gradle build

FROM ghcr.io/openfaas/of-watchdog:0.10.6 AS watchdog
FROM ghcr.io/openfaas/of-watchdog:0.10.7 AS watchdog
FROM openjdk:11-jre-slim AS ship

COPY --from=watchdog /fwatchdog /usr/bin/fwatchdog
Expand Down
2 changes: 1 addition & 1 deletion template/java11/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ COPY . /home/app/
RUN gradle build
RUN find .

FROM ghcr.io/openfaas/of-watchdog:0.10.6 AS watchdog
FROM ghcr.io/openfaas/of-watchdog:0.10.7 AS watchdog

FROM openjdk:11-jre-slim AS ship
RUN apt-get update -qqy \
Expand Down
2 changes: 1 addition & 1 deletion template/java17/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ COPY . /home/app/
RUN gradle build --debug
RUN find .

FROM ghcr.io/openfaas/of-watchdog:0.10.6 AS watchdog
FROM ghcr.io/openfaas/of-watchdog:0.10.7 AS watchdog

FROM openjdk:17-slim AS ship
RUN apt-get update -qqy \
Expand Down
2 changes: 1 addition & 1 deletion template/node18/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.10.6 AS watchdog
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.10.7 AS watchdog
FROM --platform=${TARGETPLATFORM:-linux/amd64} node:18-alpine AS ship

ARG TARGETPLATFORM
Expand Down
2 changes: 1 addition & 1 deletion template/node20/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.10.6 AS watchdog
FROM --platform=${TARGETPLATFORM:-linux/amd64} ghcr.io/openfaas/of-watchdog:0.10.7 AS watchdog
FROM --platform=${TARGETPLATFORM:-linux/amd64} node:20-alpine AS ship

ARG TARGETPLATFORM
Expand Down

0 comments on commit c77df2a

Please sign in to comment.