magallanes/docs/dockers/php8.0/Dockerfile

13 lines
373 B
Docker
Raw Normal View History

2022-04-10 06:20:03 +02:00
FROM ubuntu:21.10
2021-02-19 04:26:39 +01:00
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
2022-04-10 06:20:03 +02:00
RUN apt-get install -y php8.0-cli php8.0-zip php8.0-curl php8.0-xml php8.0-mbstring php8.0-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