Update Dockerfile-web-ui-dev to include src/Managing.WebApp/ in the COPY command

This commit is contained in:
2025-02-02 18:57:49 +07:00
parent b1b7ef6a1d
commit 609fdd56b3
2 changed files with 4 additions and 2 deletions

View File

@@ -21,7 +21,8 @@ COPY /src/Managing.WebApp/package.json ./
RUN npm install --legacy-peer-deps RUN npm install --legacy-peer-deps
# Copy the rest of the app's source code to the container # Copy the rest of the app's source code to the container
COPY . . # COPY . .
COPY src/Managing.WebApp/ /app/
# Build the app # Build the app
RUN npm run build RUN npm run build

View File

@@ -21,7 +21,8 @@ COPY /src/Managing.WebApp/package.json ./
RUN npm install --legacy-peer-deps RUN npm install --legacy-peer-deps
# Copy the rest of the app's source code to the container # Copy the rest of the app's source code to the container
COPY . . # COPY . .
COPY src/Managing.WebApp/ /app/
# Build the app # Build the app
RUN npm run build RUN npm run build