From 85ec27cb2b64410520f11bb6a1da6b6ccf9b3cb7 Mon Sep 17 00:00:00 2001 From: thedrewen Date: Mon, 3 Nov 2025 18:09:38 +0100 Subject: [PATCH] fix(docker): correct npm command to run register in Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 86cd56b..09f3fe9 100644 --- a/Dockerfile +++ b/Dockerfile @@ -7,6 +7,6 @@ COPY . . RUN apt-get update && apt-get install -y iputils-ping RUN npm i -RUN npm register +RUN npm run register CMD [ "npm", "run", "start" ] \ No newline at end of file