Pőcze Bence
0e1280cdd0
Some checks failed
mapguesser/pipeline/pr-develop There was a failure building this commit
12 lines
268 B
Plaintext
12 lines
268 B
Plaintext
FROM ubuntu:focal
|
|
|
|
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
|