From 7d9cb9bed3ac20483eed26b00f3933af17224f86 Mon Sep 17 00:00:00 2001 From: Kaveri Reddy <123486234+chintapallykaverireddy@users.noreply.github.com> Date: Tue, 10 Dec 2024 23:55:31 +0530 Subject: [PATCH] Update Dockerfile --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 838434b..07a2dc7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM node:18-alpine WORKDIR /app COPY . . -RUN yarn install +RUN yarn install --production EXPOSE 3000 CMD ["node","src/index.js"]