From 70616bc5dfa71cb24cca5ad2e0f4bd4104757e7f Mon Sep 17 00:00:00 2001 From: oonyeje Date: Tue, 25 Feb 2025 17:36:52 -0500 Subject: [PATCH] - use yarn instead of node run --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 589129c..a823c02 100644 --- a/Dockerfile +++ b/Dockerfile @@ -15,4 +15,4 @@ RUN npm install -g yarn --force && yarn install --frozen-lockfile --production - COPY --from=builder /app/ . EXPOSE 3000 -CMD ["node", "run", "dev", "-p", "3000"] #or node dist/index.js if you built the project. \ No newline at end of file +CMD ["yarn", "dev", "-p", "3000"] #or node dist/index.js if you built the project. \ No newline at end of file