Add all of the povray compilation prereqs

This commit is contained in:
Matt McWilliams 2021-09-22 02:00:54 -04:00
parent 63d65c0b2e
commit acd3a1f203
1 changed files with 18 additions and 1 deletions

View File

@ -2,4 +2,21 @@
FROM emscripten/emsdk:latest
RUN ls
RUN DEBIAN_FRONTEND=noninteractive apt update
RUN DEBIAN_FRONTEND=noninteractive apt install -y \
bash \
libz-dev \
libpng-dev \
libjpeg-dev \
libtiff-dev \
libopenexr-dev \
autoconf \
automake \
make \
libboost-all-dev
WORKDIR /usr/src/
ENV POVRAY_VERSION=3.7-stable
RUN cd /usr/src/ && git clone --depth 1 --branch $POVRAY_VERSION https://github.com/POV-Ray/povray povray