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