From fa3e8ebcfe1016855493291307c3a05419fb0648 Mon Sep 17 00:00:00 2001 From: Rishi Ghan Date: Fri, 21 Feb 2025 11:11:09 -0500 Subject: [PATCH] =?UTF-8?q?=F0=9F=94=A7=20Fixed=20the=20incorrect=20tsconf?= =?UTF-8?q?ig=20filename?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index b8821ff..658dcba 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,10 +6,7 @@ WORKDIR /acquisition-service # Install dependencies COPY package.json package-lock.json ./ COPY moleculer.config.ts ./ -COPY tsconfig.json ./ - -RUN apt-get update && apt-get install -y \ - bash +COPY tsconfig.build.json ./ # Install application dependencies RUN npm install