From 359ca003ad24cae2ca8e4ed22c030802ab7eb393 Mon Sep 17 00:00:00 2001 From: Krish Dholakia Date: Thu, 28 Mar 2024 16:40:36 -0700 Subject: [PATCH] Update Dockerfile --- litellm-js/spend-logs/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litellm-js/spend-logs/Dockerfile b/litellm-js/spend-logs/Dockerfile index 262ec14554..ce819c77a4 100644 --- a/litellm-js/spend-logs/Dockerfile +++ b/litellm-js/spend-logs/Dockerfile @@ -5,7 +5,7 @@ FROM node:20.11.0 WORKDIR /app # Copy package.json and package-lock.json to the working directory -COPY package*.json ./ +COPY ./litellm-js/spend-logs/package*.json ./ # Install dependencies RUN npm install @@ -14,7 +14,7 @@ RUN npm install RUN npm install -g prisma # Copy the rest of the application code -COPY . . +COPY ./litellm-js/spend-logs . # Generate Prisma client RUN npx prisma generate