diff --git a/containerize.bash b/containerize.bash
index 2544d69a831b5ad74851c6135fd94bf51b012ab8..dfc7309873dd44b466f4ee936427a4e80f847383 100755
--- a/containerize.bash
+++ b/containerize.bash
@@ -26,7 +26,7 @@ bdeps base-devel rustup # Compiling suite.
 bdeps pacman-contrib    # For paccache.
 
 # Runtime dependencies.
-# deps <NONE>
+deps python-pytorch
 
 #=== Construction layers =======================================================
 read -r -d '' DEPENDENCIES_LAYER <<-EOF
@@ -47,11 +47,14 @@ read -r -d '' COMPILATION_LAYER <<-EOF
         --branch rust-implementation
     cd ${REPO}
 
-    # Test.
+    # Debug test.
     cargo test
 
-    # Compile
+    # Compile.
     cargo build --release
+
+    # Release test.
+    cargo test --release
     #---------------------------------------------------------------------------
 EOF