| 12345678910111213141516171819202122 | FROM ubuntu:xenialENV DEBIAN_FRONTEND=noninteractiveENV LC_ALL=C.UTF-8ENV NO_INTERACTION=1ENV REPORT_EXIT_STATUS=1RUN apt-get update -qRUN apt-get install -y software-properties-commonRUN add-apt-repository ppa:ondrej/phpRUN add-apt-repository ppa:stesie/libv8 -yRUN apt-get update -qRUN apt-get install -y php$PHPVER-dev libv8-$V8VER-devADD . /appWORKDIR /appRUN phpizeRUN ./configure CXXFLAGS="-Wall -Wno-write-strings" LDFLAGS="-lstdc++" --with-v8js=/opt/libv8-$V8VER/RUN make -j4
 |