From 4072856af05ee77283c82fe0b9fa54f120844e2d Mon Sep 17 00:00:00 2001 From: naicoi Date: Thu, 18 May 2023 00:44:51 +0700 Subject: [PATCH] Update Dockerfile to use the correct Node.js version The Dockerfile has been updated to correctly reference the Node.js version specified by the tag argument. The pm2 package is now installed globally and typescript is installed using pm2. --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 67a1dc6..f13f99c 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ ARG tag=18-alpine -FROM node:${image} +FROM node:${tag} RUN yarn global add pm2 RUN pm2 install typescript \ No newline at end of file