From 9171523a879721f9dced9c8807144ab05f7d03db Mon Sep 17 00:00:00 2001 From: zontreck Date: Sun, 16 Mar 2025 19:50:26 -0700 Subject: [PATCH] Switch over commands to apk and alpine --- DIND/Agent/Dockerfile | 2 +- DIND/Dockerfile | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/DIND/Agent/Dockerfile b/DIND/Agent/Dockerfile index 2f46064..f564f2d 100644 --- a/DIND/Agent/Dockerfile +++ b/DIND/Agent/Dockerfile @@ -7,7 +7,7 @@ ENV DOCKER_PASSWORD NAN ADD entrypoint.sh / RUN chmod +x /entrypoint.sh -RUN apt-get install -y openjdk-17-jre +RUN apk add --no-cache openjdk17-jre RUN mkdir /builder diff --git a/DIND/Dockerfile b/DIND/Dockerfile index 794b52a..89109b9 100644 --- a/DIND/Dockerfile +++ b/DIND/Dockerfile @@ -4,6 +4,6 @@ ENV HOME /root USER root WORKDIR / -RUN apk add --no-cache bash moreutils curl +RUN apk add --no-cache bash moreutils curl bash RUN dockerd --version