Add all of the povray compilation prereqs
This commit is contained in:
parent
63d65c0b2e
commit
acd3a1f203
|
@ -2,4 +2,21 @@
|
||||||
|
|
||||||
FROM emscripten/emsdk:latest
|
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
|
Loading…
Reference in New Issue