feat: update web ui, docker make commands, and related docs/config
This commit is contained in:
16
Dockerfile
Normal file
16
Dockerfile
Normal file
@@ -0,0 +1,16 @@
|
||||
FROM maven:3.9.6-eclipse-temurin-8 AS builder
|
||||
WORKDIR /app
|
||||
|
||||
COPY pom.xml .
|
||||
COPY src ./src
|
||||
|
||||
RUN mvn -DskipTests clean package
|
||||
|
||||
FROM eclipse-temurin:8-jre
|
||||
WORKDIR /app
|
||||
|
||||
COPY --from=builder /app/target/svn-log-tool-1.0.0-jar-with-dependencies.jar app.jar
|
||||
|
||||
EXPOSE 18088
|
||||
|
||||
ENTRYPOINT ["java", "-jar", "/app/app.jar"]
|
||||
Reference in New Issue
Block a user