From 1db8c98f60b1a3f6eda43488e3821d0165d01a24 Mon Sep 17 00:00:00 2001 From: Akhil Pillai Date: Mon, 18 Nov 2024 00:06:57 -0800 Subject: [PATCH] update Dockerfile --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 527fb63..2a8d065 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 ./ +COPY ./src ./src COPY ./tsconfig.json ./ -COPY ./scripts ./ +COPY ./scripts ./scripts # Install node packages, install serve, build the app, and remove dependencies at the end RUN npm ci