Skip to content

Commit

Permalink
[Upd] Bump base Docker image JDK version to 17.
Browse files Browse the repository at this point in the history
  • Loading branch information
ledsoft committed Sep 11, 2023
1 parent 1452258 commit 31f0492
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM maven:3-eclipse-temurin-11 as build
FROM maven:3-eclipse-temurin-17 as build

WORKDIR /termit

Expand All @@ -12,7 +12,7 @@ COPY src src

RUN mvn package -B -P graphdb,standalone -DskipTests=true

FROM eclipse-temurin:11-jdk-alpine as runtime
FROM eclipse-temurin:17-jdk-alpine as runtime
COPY --from=build /termit/target/termit.jar termit.jar

EXPOSE 8080
Expand Down
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ services:
- termit-storage:/tmp/termit
restart: always
environment:
TERMIT_REPOSITORY_URL: https://localhost:7200/repositories/termit
TERMIT_REPOSITORY_URL: http://localhost:7200/repositories/termit
DEBUG: "true"
ports:
- "8080:8080"
Expand Down

0 comments on commit 31f0492

Please sign in to comment.