From e66946490033043602ebb09d89b8faf650c0b704 Mon Sep 17 00:00:00 2001 From: Matthew Brown Date: Tue, 24 Mar 2020 01:00:38 -0400 Subject: [PATCH] Install required composer libs --- Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index ddfa1f3..5793d66 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,7 @@ FROM php:7.4-apache -RUN apt-get -y update && apt-get -y install git && apt-get clean +RUN apt-get update && apt-get install --no-install-recommends -y curl git \ + openssl zip unzip wget libzip-dev && rm -rf /var/lib/apt/lists/* COPY --from=composer:1.9 /usr/bin/composer /usr/bin/composer