2023-04-07 20:47:41 +02:00
|
|
|
FROM ubuntu:focal
|
2021-12-22 01:22:19 +01:00
|
|
|
|
2023-04-07 20:47:41 +02:00
|
|
|
ENV DEBIAN_FRONTEND noninteractive
|
|
|
|
|
|
|
|
# Install PHP and further necessary packages
|
|
|
|
RUN apt update --fix-missing
|
|
|
|
RUN apt install -y git unzip php7.4-cli
|
|
|
|
|
|
|
|
# Install Composer
|
|
|
|
COPY scripts/install-composer.sh install-composer.sh
|
|
|
|
RUN ./install-composer.sh
|