From b6f28291c8cbae3086875377233de3029c83b8da Mon Sep 17 00:00:00 2001 From: Or Fleisher Date: Sun, 12 Jan 2020 17:55:13 -0500 Subject: [PATCH] =?UTF-8?q?Init=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 2 + dist/2.79-cpu-ubuntu18.04/Dockerfile | 53 ++++++++++++ dist/2.79-gpu-ubuntu18.04/Dockerfile | 53 ++++++++++++ dist/2.80-cpu-ubuntu18.04/Dockerfile | 53 ++++++++++++ dist/2.80-gpu-ubuntu18.04/Dockerfile | 53 ++++++++++++ dist/2.81-cpu-ubuntu18.04/Dockerfile | 53 ++++++++++++ dist/2.81-gpu-ubuntu18.04/Dockerfile | 53 ++++++++++++ generate.py | 118 +++++++++++++++++++++++++++ manifest.json | 98 ++++++++++++++++++++++ 9 files changed, 536 insertions(+) create mode 100644 .gitignore create mode 100644 dist/2.79-cpu-ubuntu18.04/Dockerfile create mode 100644 dist/2.79-gpu-ubuntu18.04/Dockerfile create mode 100644 dist/2.80-cpu-ubuntu18.04/Dockerfile create mode 100644 dist/2.80-gpu-ubuntu18.04/Dockerfile create mode 100644 dist/2.81-cpu-ubuntu18.04/Dockerfile create mode 100644 dist/2.81-gpu-ubuntu18.04/Dockerfile create mode 100644 generate.py create mode 100644 manifest.json diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..594bea6 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +.DS_Store +*.log \ No newline at end of file diff --git a/dist/2.79-cpu-ubuntu18.04/Dockerfile b/dist/2.79-cpu-ubuntu18.04/Dockerfile new file mode 100644 index 0000000..ab9b2c8 --- /dev/null +++ b/dist/2.79-cpu-ubuntu18.04/Dockerfile @@ -0,0 +1,53 @@ +# Dockerfile autogenerated on 01/12/2020, 17:52:15 by juniorxsound +# Please do not edit this file directly + +FROM ubuntu:18.04 + +LABEL Author="Or Fleisher " +LABEL Title="Blender Docker" + +# Enviorment variables +ENV DEBIAN_FRONTEND noninteractive +ENV LC_ALL C.UTF-8 +ENV LANG C.UTF-8 +ENV PATH "$PATH:/bin/2.79/python/bin/" +ENV BLENDER_PATH "/bin/2.79" +ENV BLENDERPIP "/bin/2.79/python/bin/pip3" +ENV BLENDERPY "/bin/2.79/python/bin/python3.7m" +ENV HW="CPU" + +# Install dependencies +RUN apt-get update && apt-get install -y \ + wget \ + libopenexr-dev \ + bzip2 \ + build-essential \ + zlib1g-dev \ + libxmu-dev \ + libxi-dev \ + libxxf86vm-dev \ + libfontconfig1 \ + libxrender1 \ + libgl1-mesa-glx + +# Download and install Blender +RUN wget https://mirror.clarkson.edu/blender/release/Blender2.79/blender-2.79-linux-glibc219-x86_64.tar.bz2 \ + && tar -xvjf blender-2.79-linux-glibc219-x86_64.tar.bz2 --strip-components=1 -C /bin \ + && rm -rf blender-2.79-linux-glibc219-x86_64.tar.bz2 \ + && rm -rf blender-2.79-linux-glibc219-x86_64 + +# Download the Python source since it is not bundled with Blender +RUN wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tgz \ + && tar -xzf Python-3.6.8.tgz \ + && cp Python-3.6.8/Include/* $BLENDER_PATH/python/include/python3.7m/ \ + && rm -rf Python-3.6.8.tgz \ + && rm -rf Python-3.6.8 + +# Blender comes with a super outdated version of numpy (which is needed for matplotlib / opencv) so override it with a modern one +RUN rm -rf ${BLENDER_PATH}/python/lib/python3.7/site-packages/numpy + +# Must first ensurepip to install Blender pip3 and then new numpy +RUN ${BLENDERPY} -m ensurepip && ${BLENDERPIP} install --upgrade pip && ${BLENDERPIP} install numpy + +# Set the working directory +WORKDIR / \ No newline at end of file diff --git a/dist/2.79-gpu-ubuntu18.04/Dockerfile b/dist/2.79-gpu-ubuntu18.04/Dockerfile new file mode 100644 index 0000000..cf1039c --- /dev/null +++ b/dist/2.79-gpu-ubuntu18.04/Dockerfile @@ -0,0 +1,53 @@ +# Dockerfile autogenerated on 01/12/2020, 17:52:15 by juniorxsound +# Please do not edit this file directly + +FROM nvidia/cudagl:10.1-base-ubuntu18.04 + +LABEL Author="Or Fleisher " +LABEL Title="Blender Docker" + +# Enviorment variables +ENV DEBIAN_FRONTEND noninteractive +ENV LC_ALL C.UTF-8 +ENV LANG C.UTF-8 +ENV PATH "$PATH:/bin/2.79/python/bin/" +ENV BLENDER_PATH "/bin/2.79" +ENV BLENDERPIP "/bin/2.79/python/bin/pip3" +ENV BLENDERPY "/bin/2.79/python/bin/python3.7m" +ENV HW="GPU" + +# Install dependencies +RUN apt-get update && apt-get install -y \ + wget \ + libopenexr-dev \ + bzip2 \ + build-essential \ + zlib1g-dev \ + libxmu-dev \ + libxi-dev \ + libxxf86vm-dev \ + libfontconfig1 \ + libxrender1 \ + libgl1-mesa-glx + +# Download and install Blender +RUN wget https://mirror.clarkson.edu/blender/release/Blender2.79/blender-2.79-linux-glibc219-x86_64.tar.bz2 \ + && tar -xvjf blender-2.79-linux-glibc219-x86_64.tar.bz2 --strip-components=1 -C /bin \ + && rm -rf blender-2.79-linux-glibc219-x86_64.tar.bz2 \ + && rm -rf blender-2.79-linux-glibc219-x86_64 + +# Download the Python source since it is not bundled with Blender +RUN wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tgz \ + && tar -xzf Python-3.6.8.tgz \ + && cp Python-3.6.8/Include/* $BLENDER_PATH/python/include/python3.7m/ \ + && rm -rf Python-3.6.8.tgz \ + && rm -rf Python-3.6.8 + +# Blender comes with a super outdated version of numpy (which is needed for matplotlib / opencv) so override it with a modern one +RUN rm -rf ${BLENDER_PATH}/python/lib/python3.7/site-packages/numpy + +# Must first ensurepip to install Blender pip3 and then new numpy +RUN ${BLENDERPY} -m ensurepip && ${BLENDERPIP} install --upgrade pip && ${BLENDERPIP} install numpy + +# Set the working directory +WORKDIR / \ No newline at end of file diff --git a/dist/2.80-cpu-ubuntu18.04/Dockerfile b/dist/2.80-cpu-ubuntu18.04/Dockerfile new file mode 100644 index 0000000..088fefb --- /dev/null +++ b/dist/2.80-cpu-ubuntu18.04/Dockerfile @@ -0,0 +1,53 @@ +# Dockerfile autogenerated on 01/12/2020, 17:52:15 by juniorxsound +# Please do not edit this file directly + +FROM ubuntu:18.04 + +LABEL Author="Or Fleisher " +LABEL Title="Blender Docker" + +# Enviorment variables +ENV DEBIAN_FRONTEND noninteractive +ENV LC_ALL C.UTF-8 +ENV LANG C.UTF-8 +ENV PATH "$PATH:/bin/2.80/python/bin/" +ENV BLENDER_PATH "/bin/2.80" +ENV BLENDERPIP "/bin/2.80/python/bin/pip3" +ENV BLENDERPY "/bin/2.80/python/bin/python3.7m" +ENV HW="CPU" + +# Install dependencies +RUN apt-get update && apt-get install -y \ + wget \ + libopenexr-dev \ + bzip2 \ + build-essential \ + zlib1g-dev \ + libxmu-dev \ + libxi-dev \ + libxxf86vm-dev \ + libfontconfig1 \ + libxrender1 \ + libgl1-mesa-glx + +# Download and install Blender +RUN wget https://mirror.clarkson.edu/blender/release/Blender2.80/blender-2.80-linux-glibc217-x86_64.tar.bz2 \ + && tar -xvjf blender-2.80-linux-glibc217-x86_64.tar.bz2 --strip-components=1 -C /bin \ + && rm -rf blender-2.80-linux-glibc217-x86_64.tar.bz2 \ + && rm -rf blender-2.80-linux-glibc217-x86_64 + +# Download the Python source since it is not bundled with Blender +RUN wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tgz \ + && tar -xzf Python-3.6.8.tgz \ + && cp Python-3.6.8/Include/* $BLENDER_PATH/python/include/python3.7m/ \ + && rm -rf Python-3.6.8.tgz \ + && rm -rf Python-3.6.8 + +# Blender comes with a super outdated version of numpy (which is needed for matplotlib / opencv) so override it with a modern one +RUN rm -rf ${BLENDER_PATH}/python/lib/python3.7/site-packages/numpy + +# Must first ensurepip to install Blender pip3 and then new numpy +RUN ${BLENDERPY} -m ensurepip && ${BLENDERPIP} install --upgrade pip && ${BLENDERPIP} install numpy + +# Set the working directory +WORKDIR / \ No newline at end of file diff --git a/dist/2.80-gpu-ubuntu18.04/Dockerfile b/dist/2.80-gpu-ubuntu18.04/Dockerfile new file mode 100644 index 0000000..ae68792 --- /dev/null +++ b/dist/2.80-gpu-ubuntu18.04/Dockerfile @@ -0,0 +1,53 @@ +# Dockerfile autogenerated on 01/12/2020, 17:52:15 by juniorxsound +# Please do not edit this file directly + +FROM nvidia/cudagl:10.1-base-ubuntu18.04 + +LABEL Author="Or Fleisher " +LABEL Title="Blender Docker" + +# Enviorment variables +ENV DEBIAN_FRONTEND noninteractive +ENV LC_ALL C.UTF-8 +ENV LANG C.UTF-8 +ENV PATH "$PATH:/bin/2.80/python/bin/" +ENV BLENDER_PATH "/bin/2.80" +ENV BLENDERPIP "/bin/2.80/python/bin/pip3" +ENV BLENDERPY "/bin/2.80/python/bin/python3.7m" +ENV HW="GPU" + +# Install dependencies +RUN apt-get update && apt-get install -y \ + wget \ + libopenexr-dev \ + bzip2 \ + build-essential \ + zlib1g-dev \ + libxmu-dev \ + libxi-dev \ + libxxf86vm-dev \ + libfontconfig1 \ + libxrender1 \ + libgl1-mesa-glx + +# Download and install Blender +RUN wget https://mirror.clarkson.edu/blender/release/Blender2.80/blender-2.80-linux-glibc217-x86_64.tar.bz2 \ + && tar -xvjf blender-2.80-linux-glibc217-x86_64.tar.bz2 --strip-components=1 -C /bin \ + && rm -rf blender-2.80-linux-glibc217-x86_64.tar.bz2 \ + && rm -rf blender-2.80-linux-glibc217-x86_64 + +# Download the Python source since it is not bundled with Blender +RUN wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tgz \ + && tar -xzf Python-3.6.8.tgz \ + && cp Python-3.6.8/Include/* $BLENDER_PATH/python/include/python3.7m/ \ + && rm -rf Python-3.6.8.tgz \ + && rm -rf Python-3.6.8 + +# Blender comes with a super outdated version of numpy (which is needed for matplotlib / opencv) so override it with a modern one +RUN rm -rf ${BLENDER_PATH}/python/lib/python3.7/site-packages/numpy + +# Must first ensurepip to install Blender pip3 and then new numpy +RUN ${BLENDERPY} -m ensurepip && ${BLENDERPIP} install --upgrade pip && ${BLENDERPIP} install numpy + +# Set the working directory +WORKDIR / \ No newline at end of file diff --git a/dist/2.81-cpu-ubuntu18.04/Dockerfile b/dist/2.81-cpu-ubuntu18.04/Dockerfile new file mode 100644 index 0000000..29905ad --- /dev/null +++ b/dist/2.81-cpu-ubuntu18.04/Dockerfile @@ -0,0 +1,53 @@ +# Dockerfile autogenerated on 01/12/2020, 17:52:15 by juniorxsound +# Please do not edit this file directly + +FROM ubuntu:18.04 + +LABEL Author="Or Fleisher " +LABEL Title="Blender Docker" + +# Enviorment variables +ENV DEBIAN_FRONTEND noninteractive +ENV LC_ALL C.UTF-8 +ENV LANG C.UTF-8 +ENV PATH "$PATH:/bin/2.81/python/bin/" +ENV BLENDER_PATH "/bin/2.81" +ENV BLENDERPIP "/bin/2.81/python/bin/pip3" +ENV BLENDERPY "/bin/2.81/python/bin/python3.7m" +ENV HW="CPU" + +# Install dependencies +RUN apt-get update && apt-get install -y \ + wget \ + libopenexr-dev \ + bzip2 \ + build-essential \ + zlib1g-dev \ + libxmu-dev \ + libxi-dev \ + libxxf86vm-dev \ + libfontconfig1 \ + libxrender1 \ + libgl1-mesa-glx + +# Download and install Blender +RUN wget https://mirror.clarkson.edu/blender/release/Blender2.81/blender-2.81-linux-glibc217-x86_64.tar.bz2 \ + && tar -xvjf blender-2.81-linux-glibc217-x86_64.tar.bz2 --strip-components=1 -C /bin \ + && rm -rf blender-2.81-linux-glibc217-x86_64.tar.bz2 \ + && rm -rf blender-2.81-linux-glibc217-x86_64 + +# Download the Python source since it is not bundled with Blender +RUN wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tgz \ + && tar -xzf Python-3.6.8.tgz \ + && cp Python-3.6.8/Include/* $BLENDER_PATH/python/include/python3.7m/ \ + && rm -rf Python-3.6.8.tgz \ + && rm -rf Python-3.6.8 + +# Blender comes with a super outdated version of numpy (which is needed for matplotlib / opencv) so override it with a modern one +RUN rm -rf ${BLENDER_PATH}/python/lib/python3.7/site-packages/numpy + +# Must first ensurepip to install Blender pip3 and then new numpy +RUN ${BLENDERPY} -m ensurepip && ${BLENDERPIP} install --upgrade pip && ${BLENDERPIP} install numpy + +# Set the working directory +WORKDIR / \ No newline at end of file diff --git a/dist/2.81-gpu-ubuntu18.04/Dockerfile b/dist/2.81-gpu-ubuntu18.04/Dockerfile new file mode 100644 index 0000000..7ab45b4 --- /dev/null +++ b/dist/2.81-gpu-ubuntu18.04/Dockerfile @@ -0,0 +1,53 @@ +# Dockerfile autogenerated on 01/12/2020, 17:52:15 by juniorxsound +# Please do not edit this file directly + +FROM nvidia/cudagl:10.1-base-ubuntu18.04 + +LABEL Author="Or Fleisher " +LABEL Title="Blender Docker" + +# Enviorment variables +ENV DEBIAN_FRONTEND noninteractive +ENV LC_ALL C.UTF-8 +ENV LANG C.UTF-8 +ENV PATH "$PATH:/bin/2.81/python/bin/" +ENV BLENDER_PATH "/bin/2.81" +ENV BLENDERPIP "/bin/2.81/python/bin/pip3" +ENV BLENDERPY "/bin/2.81/python/bin/python3.7m" +ENV HW="GPU" + +# Install dependencies +RUN apt-get update && apt-get install -y \ + wget \ + libopenexr-dev \ + bzip2 \ + build-essential \ + zlib1g-dev \ + libxmu-dev \ + libxi-dev \ + libxxf86vm-dev \ + libfontconfig1 \ + libxrender1 \ + libgl1-mesa-glx + +# Download and install Blender +RUN wget https://mirror.clarkson.edu/blender/release/Blender2.81/blender-2.81-linux-glibc217-x86_64.tar.bz2 \ + && tar -xvjf blender-2.81-linux-glibc217-x86_64.tar.bz2 --strip-components=1 -C /bin \ + && rm -rf blender-2.81-linux-glibc217-x86_64.tar.bz2 \ + && rm -rf blender-2.81-linux-glibc217-x86_64 + +# Download the Python source since it is not bundled with Blender +RUN wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tgz \ + && tar -xzf Python-3.6.8.tgz \ + && cp Python-3.6.8/Include/* $BLENDER_PATH/python/include/python3.7m/ \ + && rm -rf Python-3.6.8.tgz \ + && rm -rf Python-3.6.8 + +# Blender comes with a super outdated version of numpy (which is needed for matplotlib / opencv) so override it with a modern one +RUN rm -rf ${BLENDER_PATH}/python/lib/python3.7/site-packages/numpy + +# Must first ensurepip to install Blender pip3 and then new numpy +RUN ${BLENDERPY} -m ensurepip && ${BLENDERPIP} install --upgrade pip && ${BLENDERPIP} install numpy + +# Set the working directory +WORKDIR / \ No newline at end of file diff --git a/generate.py b/generate.py new file mode 100644 index 0000000..27a5012 --- /dev/null +++ b/generate.py @@ -0,0 +1,118 @@ +""" +A script to automatically generate Dockerfiles based on a manifest +To run this simply `python generate.py --m manifest.json` +For manifest structure see manifest.json + +Written by juniorxsound +""" + +import os +import json +import getpass +import argparse +from datetime import datetime + + +def lookahead(iterable: list): + """Pass through all values from the given iterable, augmented by the + information if there are more values to come after the current one + (True), or if it is the last value (False). + + Thanks to the fantastic https://stackoverflow.com/questions/1630320/what-is-the-pythonic-way-to-detect-the-last-element-in-a-for-loop + """ + # Get an iterator and pull the first value. + it = iter(iterable) + last = next(it) + # Run the iterator to exhaustion (starting from the second value). + for val in it: + # Report the *previous* value (more to come). + yield last, True + last = val + # Report the last value. + yield last, False + + +def create_dockerfile(base_os: str, + title: str, + author: str, + env: list, + deps: list, + blender_download_url: str, + workdir: str) -> str: + """ + Create a stringified Dockerfile based on arguments provided + """ + dockerfile = "# Dockerfile autogenerated on {} by {} \n".format( + datetime.now().strftime("%m/%d/%Y, %H:%M:%S"), getpass.getuser()) + dockerfile += "# Please do not edit this file directly \n\n" + + dockerfile += "FROM {}\n\n".format(base_os) + dockerfile += "LABEL Author=\"{}\"\n".format(author) + dockerfile += "LABEL Title=\"{}\"\n\n".format(title) + + dockerfile += "# Enviorment variables\n" + for enviorment_variable in env: + dockerfile += "ENV {}\n".format(enviorment_variable) + dockerfile += "\n" + + dockerfile += "# Install dependencies\n" + dockerfile += "RUN apt-get update && apt-get install -y \ \n" + for dependency, has_more in lookahead(deps): + is_multiline = " \ " if has_more else "" + dockerfile += "\u0009{}{}\n".format(dependency, is_multiline) + dockerfile += "\n" + + dockerfile += "# Download and install Blender\n" + dockerfile += "RUN wget {} \ \n".format(blender_download_url) + dockerfile += "\u0009&& tar -xvjf {} --strip-components=1 -C /bin \ \n".format( + blender_download_url.split("/")[-1]) + dockerfile += "\u0009&& rm -rf {} \ \n".format( + blender_download_url.split("/")[-1]) + dockerfile += "\u0009&& rm -rf {} \n\n".format( + blender_download_url.split("/")[-1].split(".tar.bz2")[0]) + + dockerfile += "# Download the Python source since it is not bundled with Blender\n" + dockerfile += "RUN wget https://www.python.org/ftp/python/3.6.8/Python-3.6.8.tgz \ \n" + dockerfile += "\u0009&& tar -xzf Python-3.6.8.tgz \ \n" + dockerfile += "\u0009&& cp Python-3.6.8/Include/* $BLENDER_PATH/python/include/python3.7m/ \ \n" + dockerfile += "\u0009&& rm -rf Python-3.6.8.tgz \ \n" + dockerfile += "\u0009&& rm -rf Python-3.6.8 \n\n" + + dockerfile += "# Blender comes with a super outdated version of numpy (which is needed for matplotlib / opencv) so override it with a modern one\n" + dockerfile += "RUN rm -rf ${BLENDER_PATH}/python/lib/python3.7/site-packages/numpy \n\n" + + dockerfile += "# Must first ensurepip to install Blender pip3 and then new numpy\n" + dockerfile += "RUN ${BLENDERPY} -m ensurepip && ${BLENDERPIP} install --upgrade pip && ${BLENDERPIP} install numpy\n\n" + + dockerfile += "# Set the working directory\n" + dockerfile += "WORKDIR {}".format(workdir) + + return dockerfile + + +if __name__ == "__main__": + + # @todo should be a CLI argument + output_folder = "./dist/" + + # Open the manifest file and start generating Dockerfiles + with open("./manifest.json", "r") as r: + manifest = json.load(r) + + for image in manifest["images"]: + # Check if folder exists and if not create one + if (os.path.exists(output_folder + image["tag"]) is False): + os.mkdir(output_folder + image["tag"]) + + dockerfile = create_dockerfile( + base_os=image["base_os_image"], + title=manifest["title"], + author=manifest["author"], + env=manifest["env"] + image["env"], + deps=manifest["deps"], + blender_download_url=image["blender_download_url"], + workdir="/" + ) + + with open("{}/Dockerfile".format(output_folder + image["tag"]), "w") as w: + w.write(dockerfile) diff --git a/manifest.json b/manifest.json new file mode 100644 index 0000000..f1cf4f7 --- /dev/null +++ b/manifest.json @@ -0,0 +1,98 @@ +{ + "repository": "juniorxsound/blender", + "title": "Blender Docker", + "author": "Or Fleisher ", + "env": [ + "DEBIAN_FRONTEND noninteractive", + "LC_ALL C.UTF-8", + "LANG C.UTF-8" + ], + "deps": [ + "wget", + "libopenexr-dev", + "bzip2", + "build-essential", + "zlib1g-dev", + "libxmu-dev", + "libxi-dev", + "libxxf86vm-dev", + "libfontconfig1", + "libxrender1", + "libgl1-mesa-glx" + ], + "images": [ + { + "tag": "2.79-cpu-ubuntu18.04", + "base_os_image": "ubuntu:18.04", + "blender_download_url": "https://mirror.clarkson.edu/blender/release/Blender2.79/blender-2.79-linux-glibc219-x86_64.tar.bz2", + "env": [ + "PATH \"$PATH:/bin/2.79/python/bin/\"", + "BLENDER_PATH \"/bin/2.79\"", + "BLENDERPIP \"/bin/2.79/python/bin/pip3\"", + "BLENDERPY \"/bin/2.79/python/bin/python3.7m\"", + "HW=\"CPU\"" + ] + }, + { + "tag": "2.79-gpu-ubuntu18.04", + "base_os_image": "nvidia/cudagl:10.1-base-ubuntu18.04", + "blender_download_url": "https://mirror.clarkson.edu/blender/release/Blender2.79/blender-2.79-linux-glibc219-x86_64.tar.bz2", + "env": [ + "PATH \"$PATH:/bin/2.79/python/bin/\"", + "BLENDER_PATH \"/bin/2.79\"", + "BLENDERPIP \"/bin/2.79/python/bin/pip3\"", + "BLENDERPY \"/bin/2.79/python/bin/python3.7m\"", + "HW=\"GPU\"" + ] + }, + { + "tag": "2.80-cpu-ubuntu18.04", + "base_os_image": "ubuntu:18.04", + "blender_download_url": "https://mirror.clarkson.edu/blender/release/Blender2.80/blender-2.80-linux-glibc217-x86_64.tar.bz2", + "env": [ + "PATH \"$PATH:/bin/2.80/python/bin/\"", + "BLENDER_PATH \"/bin/2.80\"", + "BLENDERPIP \"/bin/2.80/python/bin/pip3\"", + "BLENDERPY \"/bin/2.80/python/bin/python3.7m\"", + "HW=\"CPU\"" + ] + }, + { + "tag": "2.80-gpu-ubuntu18.04", + "base_os_image": "nvidia/cudagl:10.1-base-ubuntu18.04", + "blender_download_url": "https://mirror.clarkson.edu/blender/release/Blender2.80/blender-2.80-linux-glibc217-x86_64.tar.bz2", + "env": [ + "PATH \"$PATH:/bin/2.80/python/bin/\"", + "BLENDER_PATH \"/bin/2.80\"", + "BLENDERPIP \"/bin/2.80/python/bin/pip3\"", + "BLENDERPY \"/bin/2.80/python/bin/python3.7m\"", + "HW=\"GPU\"" + ] + }, + { + "tag": "2.81-cpu-ubuntu18.04", + "base_os_image": "ubuntu:18.04", + "blender_download_url": "https://mirror.clarkson.edu/blender/release/Blender2.81/blender-2.81-linux-glibc217-x86_64.tar.bz2", + "env": [ + "PATH \"$PATH:/bin/2.81/python/bin/\"", + "BLENDER_PATH \"/bin/2.81\"", + "BLENDERPIP \"/bin/2.81/python/bin/pip3\"", + "BLENDERPY \"/bin/2.81/python/bin/python3.7m\"", + "HW=\"CPU\"" + ] + }, + { + "tag": "2.81-gpu-ubuntu18.04", + "base_os_image": "nvidia/cudagl:10.1-base-ubuntu18.04", + "blender_download_url": "https://mirror.clarkson.edu/blender/release/Blender2.81/blender-2.81-linux-glibc217-x86_64.tar.bz2", + "env": [ + "PATH \"$PATH:/bin/2.81/python/bin/\"", + "BLENDER_PATH \"/bin/2.81\"", + "BLENDERPIP \"/bin/2.81/python/bin/pip3\"", + "BLENDERPY \"/bin/2.81/python/bin/python3.7m\"", + "HW=\"GPU\"" + ] + } + ] + +} \ No newline at end of file