We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 20fe45e commit 6d27ae4Copy full SHA for 6d27ae4
content/guides/angular/develop.md
@@ -50,13 +50,13 @@ ENV NODE_ENV=development
50
WORKDIR /app
51
52
# Copy only the dependency files first to optimize Docker caching
53
-COPY --link package.json package-lock.json ./
+COPY package.json package-lock.json ./
54
55
# Install dependencies using npm with caching to speed up subsequent builds
56
RUN --mount=type=cache,target=/root/.npm npm ci
57
58
# Copy all application source files into the container
59
-COPY --link . .
+COPY . .
60
61
# Expose the port Angular uses for the dev server (default is 4200)
62
EXPOSE 4200
0 commit comments