From 328af835dc53109b5fd35719466d220b8ec3beba Mon Sep 17 00:00:00 2001 From: ryan Date: Wed, 24 Sep 2025 13:25:23 -0700 Subject: [PATCH] Fix workdir --- hindki/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hindki/Dockerfile b/hindki/Dockerfile index 7db7cff..be339de 100644 --- a/hindki/Dockerfile +++ b/hindki/Dockerfile @@ -1,6 +1,7 @@ FROM node:20-alpine AS base -WORKDIR hindki +WORKDIR /app + # By copying only the package.json and package-lock.json here, we ensure that the following `-deps` steps are independent of the source code. # Therefore, the `-deps` steps will be skipped if only the source code changes. COPY package.json package-lock.json ./