File tree 3 files changed +20
-12
lines changed
client/src/components/apps
3 files changed +20
-12
lines changed Original file line number Diff line number Diff line change @@ -3,17 +3,20 @@ ENV NODE_ENV=development
3
3
4
4
WORKDIR /build
5
5
6
+ # # Server
6
7
COPY server ./server
7
- RUN cd server && \
8
- yarn install && \
8
+ RUN cd /build/server && \
9
+ yarn install
10
+ RUN cd /build/server && \
9
11
yarn build && \
10
- yarn swaggergen && \
11
- cd ..
12
+ yarn swaggergen
13
+
14
+ # # Client
12
15
COPY client ./client
13
- RUN cd client && \
14
- yarn install && \
15
- yarn build && \
16
- cd ..
16
+ RUN cd /build/ client && \
17
+ yarn install
18
+ RUN cd / build/client && \
19
+ yarn build
17
20
18
21
FROM build AS release
19
22
ARG VERSION=unknown
Original file line number Diff line number Diff line change @@ -1793,7 +1793,7 @@ export default defineComponent({
1793
1793
enabled: true ,
1794
1794
path: ' /' ,
1795
1795
startupSeconds: 90 ,
1796
- timeoutSeconds: 30 ,
1796
+ timeoutSeconds: 3 ,
1797
1797
periodSeconds: 10 ,
1798
1798
},
1799
1799
nameRules: [
Original file line number Diff line number Diff line change @@ -782,9 +782,14 @@ export class Kubero {
782
782
}
783
783
] ,
784
784
tls : [ ]
785
- }
786
-
787
-
785
+ } ,
786
+ healthcheck : {
787
+ enabled : false ,
788
+ path : "/" ,
789
+ startupSeconds : 90 ,
790
+ timeoutSeconds : 3 ,
791
+ periodSeconds : 10
792
+ } ,
788
793
}
789
794
let app = new App ( appOptions ) ;
790
795
You can’t perform that action at this time.
0 commit comments