Run docker build/load on EKS 1.25 without Dockershim

Hello,

Since Kubernetes no longer supports Dockershim . The Kubernetes team removed the runtime in Kubernetes version 1.24, We now cant run docker commands on our EKS managed runners.

When running a docker comman d on the runner we get:

`docker: Cannot connect to the Docker daemon at unix:///run/docker.sock. Is the docker daemon running?.`
default:
  tags:
    - eks-runners
  image: docker:24.0.5
  services:
    - docker:24.0.5-dind
  before_script:
    - docker info

variables:
  # DOCKER_HOST: tcp://docker:2375
  # DOCKER_TLS_CERTDIR: ''

stages:
  - build

build:
  stage: build
  tags:
    - eks-runners
  script:
    - docker build --network host -t "$PLAYWRIGHT_IMAGE" .

Running containers inside containers is not working with this change.
Do you have any workaround for this?