From b9600e971259c31951a5fbd98e19e00d406ddd03 Mon Sep 17 00:00:00 2001 From: IK Renovate Bot Date: Thu, 30 May 2024 04:17:24 +0000 Subject: [PATCH] chore(deps): update docker (dockerfiles/dockerfile.test.v1) --- dockerfiles/Dockerfile.go.task | 2 +- dockerfiles/Dockerfile.node-non-root | 2 +- dockerfiles/Dockerfile.nodejs-rootless | 2 +- dockerfiles/Dockerfile.test.v1 | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/dockerfiles/Dockerfile.go.task b/dockerfiles/Dockerfile.go.task index e5b57e4b..65b7ff4c 100644 --- a/dockerfiles/Dockerfile.go.task +++ b/dockerfiles/Dockerfile.go.task @@ -4,7 +4,7 @@ WORKDIR /go/src/github.com/telia-oss/github-pr-resource RUN curl -sL https://taskfile.dev/install.sh | sh RUN ./bin/task build -FROM alpine:3.19 as resource +FROM alpine:3.20 as resource COPY --from=builder /go/src/github.com/telia-oss/github-pr-resource/build /opt/resource RUN apk add --update --no-cache \ git \ diff --git a/dockerfiles/Dockerfile.node-non-root b/dockerfiles/Dockerfile.node-non-root index 7a79f249..3ef2c26c 100644 --- a/dockerfiles/Dockerfile.node-non-root +++ b/dockerfiles/Dockerfile.node-non-root @@ -2,7 +2,7 @@ # Smaller images without npm/yarn # If you want to achieve an even smaller image size than the -alpine, you can omit the npm/yarn like this: -ARG ALPINE_VERSION=3.19 +ARG ALPINE_VERSION=3.20 FROM node:18-alpine${ALPINE_VERSION} AS builder WORKDIR /build-stage diff --git a/dockerfiles/Dockerfile.nodejs-rootless b/dockerfiles/Dockerfile.nodejs-rootless index 99b34af1..b512dac4 100644 --- a/dockerfiles/Dockerfile.nodejs-rootless +++ b/dockerfiles/Dockerfile.nodejs-rootless @@ -2,7 +2,7 @@ # docker build . -t ik-nodejs # docker run -it --rm ik-nodejs -FROM node:20.13.1-slim +FROM node:20.14.0-slim RUN apt-get update && \ apt-get install -y git curl dumb-init && \ diff --git a/dockerfiles/Dockerfile.test.v1 b/dockerfiles/Dockerfile.test.v1 index 84c2f6e7..1fc94375 100644 --- a/dockerfiles/Dockerfile.test.v1 +++ b/dockerfiles/Dockerfile.test.v1 @@ -5,7 +5,7 @@ RUN unset GOPATH && go test -v ./... && \ CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/check ./cmd/check && \ CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/in ./cmd/in && \ CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/out ./cmd/out -FROM alpine:3.19 +FROM alpine:3.20 RUN mkdir -p /opt/resource COPY --from=builder /code/out/* /opt/resource/ ENV VERSION_FILE /opt/resource/version