From 5f449f3a7389f3898762eef2db65201fa4087d8e Mon Sep 17 00:00:00 2001 From: Andy Lo-A-Foe Date: Thu, 18 Jan 2024 18:46:52 +0100 Subject: [PATCH] Update base images. Fixes #439 --- logproxy-filter-drop/Dockerfile | 4 ++-- logproxy-filter-email/Dockerfile | 4 ++-- logproxy-filter-replace/Dockerfile | 4 ++-- logproxy-filter-test/Dockerfile | 4 ++-- 4 files changed, 8 insertions(+), 8 deletions(-) diff --git a/logproxy-filter-drop/Dockerfile b/logproxy-filter-drop/Dockerfile index 010d14f..4044ba2 100644 --- a/logproxy-filter-drop/Dockerfile +++ b/logproxy-filter-drop/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.4-alpine3.16 as build_base +FROM golang:1.21.6-alpine3.19 as build_base RUN apk add --no-cache git openssh gcc musl-dev WORKDIR /plugin COPY go.mod . @@ -14,7 +14,7 @@ WORKDIR /plugin COPY . . RUN go build . -FROM philipssoftware/logproxy:v1.8.3 +FROM ghcr.io/philips-software/logproxy:v1.9.0 RUN apk --no-cache add ca-certificates COPY --from=builder /plugin/logproxy-filter-drop /app diff --git a/logproxy-filter-email/Dockerfile b/logproxy-filter-email/Dockerfile index 0fbd9db..70c1604 100644 --- a/logproxy-filter-email/Dockerfile +++ b/logproxy-filter-email/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.4-alpine3.16 as build_base +FROM golang:1.21.6-alpine3.19 as build_base RUN apk add --no-cache git openssh gcc musl-dev WORKDIR /plugin COPY go.mod . @@ -14,7 +14,7 @@ WORKDIR /plugin COPY . . RUN go build . -FROM philipssoftware/logproxy:v1.8.3 +FROM ghcr.io/philips-software/logproxy:v1.9.0 RUN apk --no-cache add ca-certificates COPY --from=builder /plugin/logproxy-filter-email /app diff --git a/logproxy-filter-replace/Dockerfile b/logproxy-filter-replace/Dockerfile index 5791847..e71bcb1 100644 --- a/logproxy-filter-replace/Dockerfile +++ b/logproxy-filter-replace/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.4-alpine3.16 as build_base +FROM golang:1.21.6-alpine3.19 as build_base RUN apk add --no-cache git openssh gcc musl-dev WORKDIR /plugin COPY go.mod . @@ -14,7 +14,7 @@ WORKDIR /plugin COPY . . RUN go build . -FROM philipssoftware/logproxy:v1.8.3 +FROM ghcr.io/philips-software/logproxy:v1.9.0 RUN apk --no-cache add ca-certificates COPY --from=builder /plugin/logproxy-filter-replace /app diff --git a/logproxy-filter-test/Dockerfile b/logproxy-filter-test/Dockerfile index 6aea97a..7ede073 100644 --- a/logproxy-filter-test/Dockerfile +++ b/logproxy-filter-test/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.20.4-alpine3.16 as build_base +FROM golang:1.21.6-alpine3.19 as build_base RUN apk add --no-cache git openssh gcc musl-dev WORKDIR /plugin COPY go.mod . @@ -14,6 +14,6 @@ WORKDIR /plugin COPY . . RUN go build . -FROM philipssoftware/logproxy:v1.8.3 +FROM ghcr.io/philips-software/logproxy:v1.9.0 RUN apk --no-cache add ca-certificates COPY --from=builder /plugin/logproxy-filter-test /app