File tree Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Expand file tree Collapse file tree 3 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 8
8
9
9
# installed files
10
10
node_modules
11
+
12
+ # ignore base image 'main.js'
13
+ main.js
Original file line number Diff line number Diff line change @@ -45,7 +45,6 @@ RUN npm --quiet set progress=false \
45
45
# for most source file changes.
46
46
COPY --chown=myuser . ./
47
47
48
-
49
48
# Run the image. If you know you won't need headful browsers,
50
49
# you can remove the XVFB start script for a micro perf gain.
51
- CMD ./start_xvfb_and_run_cmd.sh && npm run start:prod --silent
50
+ CMD ./start_xvfb_and_run_cmd.sh && npm run start:prod --silent
Original file line number Diff line number Diff line change 32
32
"start" : " npm run start:dev" ,
33
33
"start:cli" : " cross-env NODE_ENV=development npm run build && node dist/src/cli.js" ,
34
34
"start:dev" : " cross-env NODE_ENV=development npm run build && node dist/src/main.js" ,
35
- "start:prod" : " node dist/main.js" ,
35
+ "start:prod" : " node dist/src/ main.js" ,
36
36
"build" : " tsc" ,
37
37
"fmt" : " prettier --write ."
38
38
},
You can’t perform that action at this time.
0 commit comments