Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.git
node_modules
build
dist
coverage
.vscode
.cursor
.idea
.DS_Store
*.log
.env.local
storybook-static
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,15 @@ WORKDIR /app

COPY package*.json ./

RUN npm install
RUN npm install

COPY . .

ARG ci_build

RUN mkdir -p /app/log

RUN npm run build:${ci_build}
RUN NODE_OPTIONS="--max-old-space-size=4096" npm run build:${ci_build}

FROM nginx:stable-alpine

Expand Down
Loading