From 40a0edadbb68e6b70540caff12e7a531f9383b09 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Thu, 20 Feb 2025 22:04:01 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Added=20npm=20i=20step?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Dockerfile b/Dockerfile index 2d8be9d..05bc2f5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,6 +6,10 @@ WORKDIR /acquisition-service # Install dependencies COPY package.json package-lock.json ./ +# Install application dependencies +RUN npm install +RUN npm install -g typescript ts-node + # Copy source COPY . .