From 847b7b6f6215756c3888490bc97ab77948cf5a06 Mon Sep 17 00:00:00 2001 From: TheOneWithTheBraid Date: Fri, 25 Nov 2022 11:02:42 +0100 Subject: [PATCH] chore: include DinD utils into Cypress and Alpine Signed-off-by: TheOneWithTheBraid --- alpine_flutter/Dockerfile | 2 ++ cypress/Dockerfile | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/alpine_flutter/Dockerfile b/alpine_flutter/Dockerfile index c6031a3..320c613 100644 --- a/alpine_flutter/Dockerfile +++ b/alpine_flutter/Dockerfile @@ -9,6 +9,8 @@ ENV PATH=${FLUTTER_HOME}:${PATH} ENV LC_ALL=C.UTF-8 ENV LANG=C.UTF-8 +RUN apk update && apk add docker drill grep olm cmake + RUN git clone --depth 1 https://github.com/flutter/flutter.git -b $flutter_version RUN flutter precache --linux diff --git a/cypress/Dockerfile b/cypress/Dockerfile index 36626ce..7386f68 100644 --- a/cypress/Dockerfile +++ b/cypress/Dockerfile @@ -5,7 +5,7 @@ LABEL maintainer="info@famedly.com" RUN apt update -RUN apt install curl jq debian-keyring debian-archive-keyring apt-transport-https -y +RUN apt install curl jq debian-keyring debian-archive-keyring apt-transport-https docker.io ldnsutils grep libolm3 -y RUN curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/gpg.key' | gpg --dearmor -o /usr/share/keyrings/caddy-stable-archive-keyring.gpg RUN curl -1sLf 'https://dl.cloudsmith.io/public/caddy/stable/debian.deb.txt' | tee /etc/apt/sources.list.d/caddy-stable.list RUN apt update && apt upgrade -y