From 606281847571503cc54da960a9a4ac5a62323b78 Mon Sep 17 00:00:00 2001 From: Hyperling Date: Thu, 21 Aug 2025 13:24:53 -0700 Subject: [PATCH] Add the version of Express as being done in package.json. --- Config/Hyperling.com/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Config/Hyperling.com/Dockerfile b/Config/Hyperling.com/Dockerfile index 29daecd..5e25ec9 100644 --- a/Config/Hyperling.com/Dockerfile +++ b/Config/Hyperling.com/Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update && apt-get install -y git php-cli sudo curl # Cache Node Dependencies RUN mkdir -p /var/www/api WORKDIR /var/www/api -RUN echo '{ "dependencies": { "express": "" } }' > package.json +RUN echo '{ "dependencies": { "express": ">=4.18.1 < 5.0.0" } }' > package.json RUN npm install # Install + Run Website