From 8ec1fb4749cae99981d7ad00289d8e1eaa0c033d Mon Sep 17 00:00:00 2001 From: imoken777 Date: Sat, 13 Jul 2024 02:30:42 +0900 Subject: [PATCH] refactor: update the COPY command in the Dockerfile to copy the destination directory to './' instead of '.' --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index f2160c0..d5efc67 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM node:20-alpine WORKDIR /usr/src/app -COPY package.json package-lock.json . +COPY package.json package-lock.json ./ RUN npm ci COPY client/package.json client/package-lock.json ./client/