Dockerfile 313 B

1234567891011
  1. FROM ubuntu:22.04
  2. ARG DEBIAN_FRONTEND=noninteractive
  3. USER root
  4. RUN apt update
  5. RUN apt upgrade -y
  6. RUN apt install php php-mbstring php-xml php-pdo php-mysql php-xdebug -y
  7. RUN apt install curl -y
  8. RUN cd /tmp
  9. RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/local/bin --filename=composer