From 54ee896e15ac6b03bab1c4fcdb1b8b7976d0cf89 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Thu, 20 Feb 2025 22:13:13 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=B3=20Added=20copy=20config=20files=20?= =?UTF-8?q?step?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 05bc2f5..4834692 100644 --- a/Dockerfile +++ b/Dockerfile @@ -5,6 +5,8 @@ LABEL maintainer="Rishi Ghan " WORKDIR /acquisition-service # Install dependencies COPY package.json package-lock.json ./ +COPY moleculer.config.ts ./ +COPY tsconfig.json ./ # Install application dependencies RUN npm install