Skip to content

Commit 93ed0ee

Browse files
author
IK Renovate Bot
committed
chore(deps): update docker (dockerfiles/dockerfile.test.v1)
1 parent cd302c2 commit 93ed0ee

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

dockerfiles/Dockerfile.go.task

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
1-
FROM golang:1.22 as builder
1+
FROM golang:1.23 as builder
22
ADD . /go/src/github.com/telia-oss/github-pr-resource
33
WORKDIR /go/src/github.com/telia-oss/github-pr-resource
44
RUN curl -sL https://taskfile.dev/install.sh | sh
55
RUN ./bin/task build
66

7-
FROM alpine:3.20 as resource
7+
FROM alpine:3.21 as resource
88
COPY --from=builder /go/src/github.com/telia-oss/github-pr-resource/build /opt/resource
99
RUN apk add --update --no-cache \
1010
git \

dockerfiles/Dockerfile.kafka

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM confluentinc/cp-kafka-connect-base:7.6.4
1+
FROM confluentinc/cp-kafka-connect-base:7.8.0
22
# Update log4j properties
33
RUN whoami
44
# COPY --chown=appuser:appuser connect-log4j.properties /etc/kafka

dockerfiles/Dockerfile.node-non-root

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# Smaller images without npm/yarn
33
# If you want to achieve an even smaller image size than the -alpine, you can omit the npm/yarn like this:
44

5-
ARG ALPINE_VERSION=3.20
5+
ARG ALPINE_VERSION=3.21
66

77
FROM node:18-alpine${ALPINE_VERSION} AS builder
88
WORKDIR /build-stage

dockerfiles/Dockerfile.nodejs-rootless

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# docker build . -t ik-nodejs
33
# docker run -it --rm ik-nodejs
44

5-
FROM node:20.14.0-slim
5+
FROM node:20.18.1-slim
66

77
RUN apt-get update && \
88
apt-get install -y git curl dumb-init && \

dockerfiles/Dockerfile.test.v1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
FROM golang:1.22 as builder
1+
FROM golang:1.23 as builder
22
COPY . /code
33
WORKDIR /code
44
RUN unset GOPATH && go test -v ./... && \
55
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/check ./cmd/check && \
66
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/in ./cmd/in && \
77
CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o out/out ./cmd/out
8-
FROM alpine:3.20
8+
FROM alpine:3.21
99
RUN mkdir -p /opt/resource
1010
COPY --from=builder /code/out/* /opt/resource/
1111
ENV VERSION_FILE /opt/resource/version

0 commit comments

Comments
 (0)