gvisor.dev/gvisor@v0.0.0-20240520182842-f9d4d51c7e0f/images/runtimes/php8.1.1/Dockerfile.x86_64 (about)

     1  FROM ubuntu:bionic
     2  RUN apt-get update && apt-get install -y \
     3    autoconf \
     4    automake \
     5    bison \
     6    build-essential \
     7    curl \
     8    libsqlite3-dev \
     9    libtool \
    10    libxml2-dev \
    11    re2c
    12  
    13  WORKDIR /root
    14  ARG VERSION=8.1.1
    15  RUN curl -o php-${VERSION}.tar.gz https://www.php.net/distributions/php-${VERSION}.tar.gz
    16  RUN tar -zxf php-${VERSION}.tar.gz
    17  
    18  WORKDIR /root/php-${VERSION}
    19  RUN ./configure
    20  RUN make -j $(nproc)