From e4d58fe17c07925257e15f6b3205491a4d57c446 Mon Sep 17 00:00:00 2001 From: buigiaanfb1 Date: Sat, 31 May 2025 23:39:42 +0700 Subject: [PATCH] Update Dockerfile comments --- app/Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/app/Dockerfile b/app/Dockerfile index 49d1ad47..e2a6da78 100644 --- a/app/Dockerfile +++ b/app/Dockerfile @@ -16,8 +16,7 @@ WORKDIR /usr/src/app # Download dependencies as a separate step to take advantage of Docker's caching. # Leverage a cache mount to /root/.npm to speed up subsequent builds. -# Leverage a bind mounts to package.json and package-lock.json to avoid having to copy them into -# into this layer. +# Leverage bind mounts to package.json and package-lock.json to avoid having to copy them into this layer. RUN --mount=type=bind,source=package.json,target=package.json \ --mount=type=bind,source=package-lock.json,target=package-lock.json \ --mount=type=cache,target=/root/.npm \