Commit 20d8af3 1 parent a1089c3 commit 20d8af3 Copy full SHA for 20d8af3
File tree 3 files changed +21
-9
lines changed
3 files changed +21
-9
lines changed Original file line number Diff line number Diff line change @@ -10,14 +10,20 @@ FROM amazoncorretto:17.0.10-alpine3.19@sha256:180e9c91bdbaad3599fedd2f492bf0d033
10
10
COPY --from=buildtime /build/target/*.jar application.jar
11
11
RUN java -Djarmode=layertools -jar application.jar extract
12
12
13
- FROM ghcr.io/pagopa/docker-base-springboot-openjdk17:v1.1.3@sha256:a4e970ef05ecf2081424a64707e7c20856bbc40ddb3e99b32a24cd74591817c4
14
- COPY --chown=spring:spring --from=builder dependencies/ ./
15
- COPY --chown=spring:spring --from=builder snapshot-dependencies/ ./
16
- RUN true
13
+ # FROM ghcr.io/pagopa/docker-base-springboot-openjdk17:v1.1.3@sha256:a4e970ef05ecf2081424a64707e7c20856bbc40ddb3e99b32a24cd74591817c4
14
+ # COPY --chown=spring:spring --from=builder dependencies/ ./
15
+ # COPY --chown=spring:spring --from=builder snapshot-dependencies/ ./
17
16
# https://github.com/moby/moby/issues/37965#issuecomment-426853382
18
- RUN true
19
- COPY --chown=spring:spring --from=builder spring-boot-loader/ ./
20
- COPY --chown=spring:spring --from=builder application/ ./
17
+ # RUN true
18
+ # COPY --chown=spring:spring --from=builder spring-boot-loader/ ./
19
+ # COPY --chown=spring:spring --from=builder application/ ./
21
20
21
+ # https://github.com/microsoft/ApplicationInsights-Java/releases
22
+ ADD --chown=spring:spring https://github.com/microsoft/ApplicationInsights-Java/releases/download/3.4.19/applicationinsights-agent-3.4.19.jar /applicationinsights-agent.jar
23
+ COPY --chown=spring:spring docker/applicationinsights.json ./applicationinsights.json
24
+ COPY --chown=spring:spring docker/run.sh ./run.sh
25
+ RUN chmod +x ./run.sh
22
26
23
27
EXPOSE 8080
28
+
29
+ ENTRYPOINT ["./run.sh" ]
Original file line number Diff line number Diff line change
1
+ {
2
+ "selfDiagnostics" : {
3
+ "destination" : " console" ,
4
+ "level" : " INFO"
5
+ }
6
+ }
Original file line number Diff line number Diff line change @@ -64,9 +64,9 @@ microservice-chart:
64
64
envConfig :
65
65
WEBSITE_SITE_NAME : ' pagopa-node-cfg-sync'
66
66
ENV : ' azure-dev'
67
- APP_LOGGING_LEVEL : ' DEBUG '
67
+ APP_LOGGING_LEVEL : ' INFO '
68
68
HIKARI_LOGGING_LEVEL : ' DEBUG'
69
- DEFAULT_LOGGING_LEVEL : ' DEBUG '
69
+ DEFAULT_LOGGING_LEVEL : ' INFO '
70
70
CORS_CONFIGURATION : ' {"origins": ["*"], "methods": ["*"]}'
71
71
DB_NEXI_POSTGRES_URL : " jdbc:postgresql://db-postgres-ndp.d.db-nodo-pagamenti.com:5444/ndpspct?prepareThreshold=0¤tSchema=NODO4_CFG"
72
72
DB_NEXI_POSTGRES_USER : " pp_nodo4_cfg"
You can’t perform that action at this time.
0 commit comments