New povray_gcc strat

This commit is contained in:
Matt McWilliams 2021-09-22 00:37:03 -04:00
parent 3b5ab2adcb
commit 5dbf67100b
2 changed files with 7 additions and 9 deletions

View File

@ -19,4 +19,10 @@ RUN apk add --update \
automake \
make
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
RUN cat /etc/alpine-release

View File

@ -1,19 +1,11 @@
#!/bin/bash
POVRAY_VERSION=3.7-stable
if [ ! -d povray ]; then
git clone --depth 1 --branch $POVRAY_VERSION https://github.com/POV-Ray/povray povray
fi
bash build_docker.sh
cp build.sh povray/build.sh
cd povray
sudo docker run \
--cpus=2 \
-v $PWD:/usr/src \
povray_gcc \
sh -c 'cd /usr/src && sh build.sh'
sh -c 'cp build.sh /usr/src/povray && cd /usr/src/povray && sh build.sh'