From 2a1b341fe1e5f38f741520ff46d8abafcd410af2 Mon Sep 17 00:00:00 2001
From: Zhenya Tikhonov <zhenya.tikhonov@codefresh.io>
Date: Thu, 20 Jun 2024 18:26:03 +0400
Subject: [PATCH] build: upgrade Docker to v26.1.4 (#61)

* build: upgrade Docker to v26.1.4

* build: bump images
---
 Dockerfile   | 10 +++++-----
 service.yaml |  2 +-
 2 files changed, 6 insertions(+), 6 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index 2fc6cf6..e5986be 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,7 +1,7 @@
-ARG DOCKER_VERSION=26.0.0
+ARG DOCKER_VERSION=26.1.4
 
 # dind-cleaner
-FROM golang:1.22-alpine3.19 AS cleaner
+FROM golang:1.22-alpine3.20 AS cleaner
 
 COPY cleaner/dind-cleaner/* /go/src/github.com/codefresh-io/dind-cleaner/
 WORKDIR /go/src/github.com/codefresh-io/dind-cleaner/
@@ -15,16 +15,16 @@ RUN CGO_ENABLED=0 go build -o /usr/local/bin/dind-cleaner ./cmd && \
   rm -rf /go/*
 
 # bbolt
-FROM golang:1.22-alpine3.19 AS bbolt
+FROM golang:1.22-alpine3.20 AS bbolt
 RUN go install go.etcd.io/bbolt/cmd/bbolt@latest
 
 # node-exporter
-FROM quay.io/prometheus/node-exporter:v1.7.0 AS node-exporter
+FROM quay.io/prometheus/node-exporter:v1.8.1 AS node-exporter
 
 # Main
 FROM docker:${DOCKER_VERSION}-dind
 
-RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.19/main' >> /etc/apk/repositories \
+RUN echo 'http://dl-cdn.alpinelinux.org/alpine/v3.20/main' >> /etc/apk/repositories \
   && apk upgrade \
   # Add fuse-overlayfs for comaptibility with rootless. Volumes created with rootless might use fuse-overlay formatted volumes. If those volumes are later used by dind that runs with root it'll require fuse-overlay to be able to read the volume
   && apk add bash fuse-overlayfs jq --no-cache \
diff --git a/service.yaml b/service.yaml
index 32812e2..1e292bd 100644
--- a/service.yaml
+++ b/service.yaml
@@ -1 +1 @@
-version: 1.28.6
+version: 1.28.7