From 76093fb5e8ca46247c601694fc2cf7681d8ee988 Mon Sep 17 00:00:00 2001 From: M1000fr Date: Thu, 5 Dec 2024 13:29:49 +0100 Subject: [PATCH] refactor: Update base Node.js image to Alpine version in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index c91b825..d6a5eca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Use the official Node.js image as the base image -FROM node:20 +FROM node:20-alpine # Set the working directory inside the container WORKDIR /usr/src/app