inital commite

This commit is contained in:
2025-01-27 22:06:07 +05:30
parent 7f3882294b
commit 9eea9d0756
2172 changed files with 808181 additions and 0 deletions

11
Dockerfile Executable file
View File

@@ -0,0 +1,11 @@
# Use the official OpenJDK base image
FROM openjdk:21-jdk-slim
# Set the working directory in the container
WORKDIR /app
# Copy the JAR file into the container
COPY target/blog-0.0.1.jar /app/app.jar
# Specify the command to run the JAR file
ENTRYPOINT ["java", "-jar", "app.jar"]