We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f0690f commit c07b2aaCopy full SHA for c07b2aa
Dockerfile
@@ -20,7 +20,7 @@ CMD npm run config && ${HOME}/time-tracker-ui/node_modules/.bin/ng serve --host
20
21
FROM development as build
22
COPY .env .
23
-RUN npm run build
+RUN npm run config && npm run build
24
25
26
package.json
@@ -5,8 +5,8 @@
5
"config": "ts-node ./scripts/setenv.ts",
6
"preinstall": "npx npm-force-resolutions",
7
"ng": "ng",
8
- "start": "npm run config && ng serve",
9
- "build": "npm run config && ng build --prod",
+ "start": "ng serve",
+ "build": "ng build --prod",
10
"test": "ng test",
11
"test-headless": "ng test --browsers ChromeHeadless",
12
"ci-test": "ng test --no-watch --no-progress --browsers ChromeHeadless",
0 commit comments