Skip to content
This repository was archived by the owner on Oct 10, 2025. It is now read-only.

Commit eb8100c

Browse files
committed
fix: downgrade project version to 'v1' and update Docker builder to 'jammy-tiny'
1 parent ec8180a commit eb8100c

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pom.xml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
</parent>
1111
<groupId>com.example</groupId>
1212
<artifactId>spring-project-steganography-tool</artifactId>
13-
<version>v2</version>
13+
<version>v1</version>
1414
<name>spring-project-steganography-tool</name>
1515
<description>A powerful and secure steganography tool built with Spring Boot 3</description>
1616
<url>https://github.com/noobdevsam/spring-project-steganography-tool</url>
@@ -103,10 +103,13 @@
103103
</excludes>
104104
<image>
105105
<name>noobdevsam/${project.artifactId}:${project.version}</name>
106-
<builder>paketobuildpacks/builder-jammy-base</builder>
106+
<builder>paketobuildpacks/builder-jammy-tiny</builder>
107107
<env>
108108
<!-- Configure the buildpack to use Java 25 -->
109109
<BP_JVM_VERSION>${java.version}</BP_JVM_VERSION>
110+
<!-- Run the app with user/group 1000 to match host user permissions on mounted volumes -->
111+
<BP_USER_ID>1000</BP_USER_ID>
112+
<BP_GROUP_ID>1000</BP_GROUP_ID>
110113
</env>
111114
</image>
112115
</configuration>

0 commit comments

Comments
 (0)