How to upgrade minor version of a nodeJS on Azure App Service

Nikita S 20 Reputation points
2023-09-19T14:16:17.2766667+00:00

I am using 18 LTS on App Service and the runtime is 18.16.1 which is not the latest one.

User's image

How to update the MINOR version of a node to the latest one for example to 18.17.0 or 18.18.0

As I see in logs using this docker image, docker run ...... **appsvc/node:18-lts_20230810.1.tuxprod**

but also I see that available new one https://mcr.microsoft.com/v2/appsvc/node/tags/list 18-lts_20230908.2.tuxprod . How could I force to update the version?

User's image

Azure App Service
Azure App Service
Azure App Service is a service used to create and deploy scalable, mission-critical web apps.
7,758 questions
0 comments No comments
{count} votes

Accepted answer
  1. Bruce (SqlWork.com) 65,206 Reputation points
    2023-09-19T17:43:33.1633333+00:00

    if you don't want to be on the azure update schedule (they will eventually get there), you need to use a node container instead. in this case you control the version of node, but you would also be responsible for all updates. that is you need rebuild and deploy the container for all node updates you want to support.

    0 comments No comments

0 additional answers

Sort by: Most helpful

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.