From 6b174280d5f2e9b6c04a18bf38cfe4913dc03c90 Mon Sep 17 00:00:00 2001 From: SteamPixel Date: Tue, 14 Jan 2020 11:49:30 +0100 Subject: [PATCH] Added zip to docker setup --- docker/image-php-7.2/Dockerfile | 3 +++ docker/image-php-7.4.1/Dockerfile | 3 +++ 2 files changed, 6 insertions(+) diff --git a/docker/image-php-7.2/Dockerfile b/docker/image-php-7.2/Dockerfile index 295267f..4c65d35 100644 --- a/docker/image-php-7.2/Dockerfile +++ b/docker/image-php-7.2/Dockerfile @@ -14,3 +14,6 @@ RUN apt-get update -y # Install git RUN apt-get install git -y + +# Install zip +RUN apt-get install zip -y diff --git a/docker/image-php-7.4.1/Dockerfile b/docker/image-php-7.4.1/Dockerfile index 14a78ae..898ae1f 100644 --- a/docker/image-php-7.4.1/Dockerfile +++ b/docker/image-php-7.4.1/Dockerfile @@ -13,3 +13,6 @@ RUN apt-get update -y # Install git RUN apt-get install git -y + +# Install zip +RUN apt-get install zip -y