From acd3a1f2038c11f0964995544233e7fdb8c0b45b Mon Sep 17 00:00:00 2001 From: mattmcw Date: Wed, 22 Sep 2021 02:00:54 -0400 Subject: [PATCH] Add all of the povray compilation prereqs --- povray_wasm/Dockerfile | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/povray_wasm/Dockerfile b/povray_wasm/Dockerfile index c355ba6..41e4b1c 100644 --- a/povray_wasm/Dockerfile +++ b/povray_wasm/Dockerfile @@ -2,4 +2,21 @@ FROM emscripten/emsdk:latest -RUN ls \ No newline at end of file +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 \ No newline at end of file