We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8e559d3 + 450b54a commit f09fc05Copy full SHA for f09fc05
2 files changed
.dockerignore
@@ -0,0 +1,12 @@
1
+.git
2
+node_modules
3
+build
4
+dist
5
+coverage
6
+.vscode
7
+.cursor
8
+.idea
9
+.DS_Store
10
+*.log
11
+.env.local
12
+storybook-static
Dockerfile
@@ -4,15 +4,15 @@ WORKDIR /app
COPY package*.json ./
-RUN npm install
+RUN npm install
COPY . .
ARG ci_build
13
RUN mkdir -p /app/log
14
15
-RUN npm run build:${ci_build}
+RUN NODE_OPTIONS="--max-old-space-size=4096" npm run build:${ci_build}
16
17
FROM nginx:stable-alpine
18
0 commit comments