added docker deployment and added a preview to the files.

This commit is contained in:
2025-08-06 13:15:35 +02:00
parent c6b453ef81
commit bb812914b8
7 changed files with 249 additions and 19 deletions

9
dockerfile Normal file
View File

@@ -0,0 +1,9 @@
#fjet dockerfile
FROM eclipse-temurin:17-jdk
WORKDIR /app
COPY pom.xml mvnw* .mvn/ ./
COPY src ./src
RUN ./mvnw clean package -DskipTests
RUN cp target/*.jar fjet.jar
EXPOSE 8080
CMD ["java", "-jar", "fjet.jar"]