File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change 5
5
- Use constructor injection in ` LearnWebservicesApp `
6
6
- Register ` CorsFilter ` directly without ` FilterRegistrationBean `
7
7
- Use ` ForwardedHeaderFilter ` instead of configuring ` ServletRegistrationBean `
8
+ - Remove warnings from ` Dockerfile `
8
9
9
10
## [ 3.0.0]
10
11
Original file line number Diff line number Diff line change 1
- FROM eclipse-temurin:17 as builder
2
- WORKDIR application
1
+ FROM eclipse-temurin:17 AS builder
2
+ WORKDIR / application
3
3
COPY target/*.jar application.jar
4
4
RUN java -Djarmode=layertools -jar application.jar extract
5
5
6
6
FROM eclipse-temurin:17
7
- WORKDIR application
7
+ WORKDIR / application
8
8
COPY --from=builder application/dependencies/ ./
9
9
COPY --from=builder application/spring-boot-loader/ ./
10
10
COPY --from=builder application/snapshot-dependencies/ ./
You can’t perform that action at this time.
0 commit comments