1FROM debian:latest AS env 2 3USER root 4 5RUN echo 'deb http://deb.debian.org/debian testing main' >> /etc/apt/sources.list 6 7# Get Debian up-to-date 8RUN apt-get update -qq \ 9 && DEBIAN_FRONTEND=noninteractive apt-get install -y \ 10 apt-transport-https autoconf bison bsdmainutils ca-certificates curl \ 11 gcc git gnupg lsb-release make pkg-config re2c wget \ 12 libpng-dev libjpeg-dev ghostscript libxml2-dev libfreetype6-dev \ 13 libonig-dev libwebp-dev vim strace valgrind \ 14 libssl-dev libcurl4-openssl-dev fontconfig fonts-urw-base35 15 16RUN echo "Probably run 'ldconfig /usr/local/lib' so that you can run command line programs like " 17RUN echo "'convert -list font' to check if ImageMagick can find fonts." 18RUN echo "" 19RUN echo "****************************" 20RUN echo "****************************" 21 22# Make the default directory you 23WORKDIR /var/app 24 25CMD tail -f -n 1000 /var/app/docker/repro/README.md 26 27