From ef8a694162e24b18a423e3c13a7a83e13446591e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=91cze=20Bence?= Date: Fri, 7 Apr 2023 20:47:41 +0200 Subject: [PATCH] MAPG-243 fixup! MAPG-243 install git in Dockerfile-test --- docker/Dockerfile-test | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile-test b/docker/Dockerfile-test index 516936f..3f60843 100644 --- a/docker/Dockerfile-test +++ b/docker/Dockerfile-test @@ -1,4 +1,6 @@ -FROM php:7.4.7-cli-buster +FROM ubuntu:focal -RUN apt-get update && apt-get install -y git unzip +ENV DEBIAN_FRONTEND noninteractive + +RUN apt update && apt install -y git unzip php7.4-cli RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer