Skip to content

Commit

Permalink
feat(webui): add .dockerignore to skip node_modules and .next
Browse files Browse the repository at this point in the history
  • Loading branch information
berdal84 committed Apr 30, 2024
1 parent 0cebb3e commit 37ea59b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions webui/.dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
node_modules
.next
README.md
2 changes: 1 addition & 1 deletion webui/Dockerfile.standalone
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ WORKDIR /app

# Install dependencies
COPY package.json package-lock.json ./
RUN npm ci;
RUN npm ci

# Rebuild the source code only when needed
FROM base AS builder
Expand Down

0 comments on commit 37ea59b

Please sign in to comment.