From c75d6d038d766a8a9eac34bf4adc230d362a7c67 Mon Sep 17 00:00:00 2001 From: Dave Dykstra <2129743+DrDaveD@users.noreply.github.com> Date: Tue, 4 Feb 2025 16:31:48 -0600 Subject: [PATCH] change more references from node:8 to node:23 Signed-off-by: Dave Dykstra <2129743+DrDaveD@users.noreply.github.com> --- running_services.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/running_services.rst b/running_services.rst index 73e67c4..a81e53c 100644 --- a/running_services.rst +++ b/running_services.rst @@ -279,13 +279,13 @@ Building the image To package the Web to PDF service into a SIF container, we must create a definition file. Let's first choose a base from which to build our container. In -this case the docker image ``node:8`` which comes pre-installed with Node 8 has +this case the docker image ``node:23`` which comes pre-installed with Node 23 has been used: .. code:: {command} Bootstrap: docker - From: node:8 + From: node:23 The service also requires a slew of dependencies to be manually installed in addition to Node 8, so we can add those into the ``post`` section as