From e992a80969426810ac1939323e2f188be028c96b Mon Sep 17 00:00:00 2001 From: Jack Lucas Date: Mon, 17 Jul 2023 12:03:09 -0400 Subject: Update healthcheck to use newer node.js base image. Update base image to node 18.18.0, the latest LTS release. Issue-ID: DCAEGEN2-3400 Change-Id: I8a1ad5f4d2d5f36544a611eac6b58351ecd4daf1 Signed-off-by: Jack Lucas --- healthcheck-container/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'healthcheck-container/Dockerfile') diff --git a/healthcheck-container/Dockerfile b/healthcheck-container/Dockerfile index cf93791..7e144c1 100644 --- a/healthcheck-container/Dockerfile +++ b/healthcheck-container/Dockerfile @@ -2,7 +2,7 @@ # org.onap.dcae # ================================================================================ # Copyright (c) 2018-2020 AT&T Intellectual Property. All rights reserved. -# Copyright (c) 2021 J. F. Lucas. All rights reserved. +# Copyright (c) 2021, 2023 J. F. Lucas. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -17,7 +17,7 @@ # limitations under the License. # ============LICENSE_END========================================================= # -FROM node:16.12.0-alpine3.14 +FROM node:18.18.0-alpine3.18 RUN mkdir -p /opt/app \ && adduser -D -h /opt/app health COPY *.js /opt/app/ -- cgit 1.2.3-korg