From 809db7c5895db9ad4c17191c9cf69d634861a30b Mon Sep 17 00:00:00 2001 From: "Vipul Gupta (@vipulgupta2048)" Date: Wed, 23 Apr 2025 20:22:13 +0530 Subject: [PATCH] patch: Replace base image with Docker Official base image Signed-off-by: Vipul Gupta (@vipulgupta2048) --- Dockerfile.template | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/Dockerfile.template b/Dockerfile.template index f0ec34c..642053b 100644 --- a/Dockerfile.template +++ b/Dockerfile.template @@ -1,11 +1,7 @@ # base-image for node on any machine using a template variable, # see more about dockerfile templates here: https://www.balena.io/docs/learn/develop/dockerfile/#dockerfile-templates # and about balena base images here: https://www.balena.io/docs/reference/base-images/base-images/ -FROM balenalib/%%BALENA_ARCH%%-node:20-run - -# use `install_packages` if you need to install dependencies, -# for instance if you need git, just uncomment the line below. -# RUN install_packages git +FROM node:22-bookworm-slim # Defines our working directory in container WORKDIR /usr/src/app