Ready to use Docker images to build Nuke plugins for Linux and Windows.
The images produced here will include everything you need to build Nuke plugins. This includes the compiler for C++ (gcc-toolsets on Linux, Visual Studio on Windows), CMake and the Nuke files required to compile.
It is mostly meant for automatic deployment using CI/CD. However, it can also be used locally to quickly compile plugins without the need to install anything (except Docker itself π).
You can pull from the GHCR (Github Package Registry) registry by using:
docker pull ghcr.io/gillesvink/nukedockerbuild:TAGWhere as tag will be the one you want to use. The table below will be updated automatically to show the available tags.
Note: a latest tag for each Nuke version is provided. Which will be in this format: {nuke_version}-{os}-latest. For example 15.0-linux-latest. Or Linux also has slim packages available (massively reduced image size): 15.0-linux-slim-latest.
You can also use the locked tag, which will be 15.0-linux-1.0 for example.
| Tag | Locked Tag | Upstream Image | Date Added | Image Size (GB) |
|---|---|---|---|---|
15.0-linux-latest |
15.0-linux-1.0 |
rockylinux:8 | 2024-01-15 | 0.347 |
15.0-linux-slim-latest |
15.0-linux-slim-1.0 |
rockylinux:8 | 2024-01-15 | 0.198 |
15.0-windows-latest |
15.0-windows-1.0 |
mcr.microsoft.com/windows/servercore:ltsc2022 | 2024-01-15 | 5.491 |
14.1-linux-latest |
14.1-linux-1.0 |
centos:centos7.9.2009 | 2024-01-15 | 0.379 |
14.1-linux-slim-latest |
14.1-linux-slim-1.0 |
centos:centos7.9.2009 | 2024-01-15 | 0.172 |
14.1-windows-latest |
14.1-windows-1.0 |
mcr.microsoft.com/windows/servercore:ltsc2022 | 2024-01-15 | 4.561 |
14.0-linux-latest |
14.0-linux-1.0 |
centos:centos7.9.2009 | 2024-01-15 | 0.379 |
14.0-linux-slim-latest |
14.0-linux-slim-1.0 |
centos:centos7.9.2009 | 2024-01-15 | 0.171 |
14.0-windows-latest |
14.0-windows-1.0 |
mcr.microsoft.com/windows/servercore:ltsc2022 | 2024-01-15 | 4.556 |
13.2-linux-latest |
13.2-linux-1.0 |
centos:centos7.4.1708 | 2024-01-15 | 0.338 |
13.2-linux-slim-latest |
13.2-linux-slim-1.0 |
centos:centos7.4.1708 | 2024-01-15 | 0.145 |
13.2-windows-latest |
13.2-windows-1.0 |
mcr.microsoft.com/windows/servercore:ltsc2022 | 2024-01-15 | 3.277 |
13.1-linux-latest |
13.1-linux-1.0 |
centos:centos7.4.1708 | 2024-01-15 | 0.338 |
13.1-linux-slim-latest |
13.1-linux-slim-1.0 |
centos:centos7.4.1708 | 2024-01-15 | 0.145 |
13.1-windows-latest |
13.1-windows-1.0 |
mcr.microsoft.com/windows/servercore:ltsc2022 | 2024-01-15 | 3.276 |
13.0-linux-latest |
13.0-linux-1.0 |
centos:centos7.4.1708 | 2024-01-14 | 0.398 |
13.0-linux-slim-latest |
13.0-linux-slim-1.0 |
centos:centos7.4.1708 | 2024-01-14 | 0.146 |
13.0-windows-latest |
13.0-windows-1.0 |
mcr.microsoft.com/windows/servercore:ltsc2022 | 2024-01-14 | 3.276 |
If you might be running into issues using these Docker images: please feel free to make an issue on this repository.
Since Nuke requires every minor release to be compiled natively, it needs to have a docker image as well for each minor version.
This is done in an automatic process to create the Dockerfiles whenever there is a new Nuke minor release. It uses the minor supported releases JSON from my other repo: NukeVersionParser.
This data is used once a day to check if there is anything new, and if there is anything new, a new Docker image will be build using the CI/CD process.
First of all make sure you have Docker installed on your system. Guides can be found here at Docker Install. Once installed, you can test the docker image by running the command provided here. There might be some warnings of deprecation, that is because some of the source code in the examples uses deprecated functions.
Windows has some additional requirements to run this image. You need to have at least Windows 10 Pro or greater. Besides that, you need to 'switch to Windows containers' in the Docker Desktop application.
Else it will use the Windows Subsystem for Linux (which is basically a virtualization of the Linux system, allowing you to even build Linux plugins on Windows.)
Beneath here are some quick tests to verify everything is working on your system. It should pass compiling (this is a test for a Nuke 15 image). It might take a while for the image to be downloaded depending on your local internet connection.
docker run --rm ghcr.io/gillesvink/nukedockerbuild:15.0-linux-slim-latest bash -c "cd /usr/local/nuke_install/tests && cmake . -B build && cmake --build builddocker run --rm `
ghcr.io/gillesvink/nukedockerbuild:13.0-windows-latest `
powershell -Command "cd C:\nuke_install\tests ; `
cmake . -DCMAKE_GENERATOR_PLATFORM=x64 -B build ; `
cmake --build build --config Release"docker run --rm ^
ghcr.io/gillesvink/nukedockerbuild:15.0-windows-latest ^
powershell -Command "cd C:\nuke_install\tests ; ^
cmake . -DCMAKE_GENERATOR_PLATFORM=x64 -B build ; ^
cmake --build build --config Release"Note that you can change it to whatever Nuke version is available. In this example Nuke 15 is used.
docker run --rm -v "$(pwd):/nuke_build_directory \
ghcr.io/gillesvink/nukedockerbuild:15.0-linux-slim-latest bash -c \
"cmake . -B build && cmake --build buildOn Windows it is important that --isolution=process is set as it is mounting the directory, else there will be issues with cleaning files in the mounted directory. Also for CMake building it requires the config to be specified for release using --config Release.
docker run --rm --isolation=process `
-v ${PWD}:C:\nuke_build_directory `
ghcr.io/gillesvink/nukedockerbuild:15.0-windows-latest powershell -Command `
"cmake . -DCMAKE_GENERATOR_PLATFORM=x64 -B build ; `
cmake --build build --config Release"docker run --rm --isolation=process ^
-v %CD%:C:\nuke_build_directory ^
ghcr.io/gillesvink/nukedockerbuild:15.0-windows-latest powershell -Command ^
"cmake . -DCMAKE_GENERATOR_PLATFORM=x64 -B build ; ^
cmake --build build --config Release"I wish... However, Apple does not support containerized applications as its missing good handling for chroot. The good news is, there currently is being done active work by the community to create a dockerized Mac OS image. Until that's solid, that will of course be supported here as well.
This depends on the image you choose to use. Windows itself has quite large images, because it is relying on the server core image. Besides that the build tools are also quite big. As a result of that the Windows images are around 9gb.
Linux however can be optimized a lot more. The base system is around 400 MB compressed and 1.2 GB uncompressed. However here are also slim images available. These are around only 150 MB compressed, 400 MB uncompressed (while only a Nuke install would already be around 10gb). Note that these slim images only provide functionality to compile plugins. The rest of the system is basically gone. If you plan to extend these images please choose the usual image, and not the slim version.
These images only include everything that is absolutely necessary for compiling purposes, the rest is erased. If SlimToolkit will support Windows eventually, Slim images are then planned to be available as well for Windows.
The images depend on the specs provided by the NDK documentation and the VFX reference platform.
If you like to see how images are made, feel free to look at the dockerfiles in the dockerfiles directory. They are all grouped under their respective Nuke version as the target OS. Also all builds are public in the Github Actions CI process.
Nuke will always be installed at /usr/local/nuke_install on Linux and C:\nuke_install on Windows. The entry directory if you execute this image will be /nuke_build_directory on Linux and C:\nuke_build_directory on Windows.
The image also has the NUKE_VERSION environment set, this will always contain the version that is available in the image. For example 15.0
All Linux images are based on Red Hat based images. This means Rocky Linux for Nuke 15+ and CentOS for anything lower than 15. As Foundry is using Rocky, I choose to stick to that as well. However it is basically identical to Alma.
For Windows the Server Core ltsc2022 image is used. Besides that, for package installation the Chocolatey package registry is used to install both the VS Build Tools as well as CMake.
Thanks to everyone who contributed anything to the images that are used in these dockerfiles and to the maintainers of all plugins used! Without all the open source code applications that are available this would never have been possible.
This project is an independent effort, not affiliated with or endorsed by Foundry. It provides Docker images for plugin building purposes. The terms "Nuke" and related trademarks are the property of Foundry, used here for descriptive purposes only. For official information and support, please refer to Foundry's official website.
By using this project, you agree on the EULA provided by Foundry.

