Skip to content

Commit

Permalink
Use Spring Boot 2.1 base image
Browse files Browse the repository at this point in the history
The Spring Boot 2.2 image was based on Java 14, which is EOL:
WISVCH/docker-spring-boot-base#c71782eaebc04035c0b1e61286e5e9ccf92ed281
  • Loading branch information
praseodym committed Nov 29, 2020
1 parent c88e0be commit 34e52cc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@ COPY . /src
WORKDIR /src
RUN ./gradlew build

FROM wisvch/spring-boot-base:2.2
FROM wisvch/spring-boot-base:2.1
COPY --from=builder /src/build/libs/choice.jar /srv/choice.jar
CMD ["/srv/choice.jar"]

0 comments on commit 34e52cc

Please sign in to comment.