From 0afef7281e8fb35012043953accea39d85520a72 Mon Sep 17 00:00:00 2001 From: Akhil Pillai Date: Sun, 17 Nov 2024 23:55:59 -0800 Subject: [PATCH] update Dockerfile --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index c481f47..527fb63 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,9 +8,9 @@ WORKDIR /app COPY package*.json ./ # Copy local directories to the current local directory of our docker image (/app) -COPY ./src ./src -COPY ./botfiles ./botfiles -COPY ./scripts ./scripts +COPY ./src ./ +COPY ./tsconfig.json ./ +COPY ./scripts ./ # Install node packages, install serve, build the app, and remove dependencies at the end RUN npm ci