magallanes/docs/dockers/php7.4/Dockerfile

13 lines
370 B
Docker
Raw Normal View History

2021-02-19 04:26:39 +01:00
FROM ubuntu:20.04
ENV DEBIAN_FRONTEND=noninteractive \
TZ=UTC
2018-03-29 22:55:54 +02:00
RUN apt-get update && apt-get upgrade -y
RUN apt-get install -y vim curl git unzip
2021-02-19 04:26:39 +01:00
RUN apt-get install -y php7.4-cli php-zip php7.4-curl php7.4-xml php7.4-mbstring php7.4-xdebug
2018-03-29 22:55:54 +02:00
RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin/ --filename=composer
WORKDIR /home/magephp