Add s3 integration

This commit is contained in:
2025-04-07 23:01:40 +03:00
parent d422606b44
commit d369b6fac1
8 changed files with 129 additions and 15 deletions

6
Dockerfile Normal file
View File

@@ -0,0 +1,6 @@
FROM openjdk:eclipse-temurin:17-alpine
RUN addgroup -S spring && adduser -S spring -G spring
USER spring:spring
ARG JAR_FILE=build/libs/*.jar
COPY ${JAR_FILE} app.jar
ENTRYPOINT ["java","-jar","/app.jar"]