emscripten_docker/povray_gcc/Dockerfile

28 lines
418 B
Docker
Raw Normal View History

2021-09-16 01:35:46 +00:00
FROM alpine:3.9
RUN apk update
RUN apk add --update \
2021-09-16 01:11:18 +00:00
git \
bash \
coreutils \
build-base \
boost-dev \
zlib-dev \
libpng-dev \
jpeg-dev \
tiff-dev \
openexr-dev \
sdl-dev \
2021-09-16 01:37:24 +00:00
ilmbase-dev \
autoconf \
automake \
2021-09-16 01:33:54 +00:00
make
2021-09-22 04:37:03 +00:00
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
2021-09-16 01:33:54 +00:00
RUN cat /etc/alpine-release