diff --git a/.run/Application.run.xml b/.run/Application.run.xml
index 0b0b445..36cbb0b 100644
--- a/.run/Application.run.xml
+++ b/.run/Application.run.xml
@@ -4,8 +4,8 @@
-
-
+
+
diff --git a/Dockerfile b/Dockerfile
index 7aec945..8aafd7d 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -1,3 +1,4 @@
+# Stage that builds the application, a prerequisite for the running stage
FROM eclipse-temurin:21-jdk-noble AS build
RUN apt-get update -qq
@@ -10,7 +11,7 @@ USER app
# Copy all needed project files to a folder
COPY --chown=app ./.mvn/ .mvn
-COPY --chown=app ./mvnw ./pom.xml ./app.json ./
+COPY --chown=app ./mvnw ./pom.xml ./
COPY --chown=app ./src ./src
RUN curl -OL https://github.com/open-telemetry/opentelemetry-java-instrumentation/releases/latest/download/opentelemetry-javaagent.jar
diff --git a/app.json b/app.json
deleted file mode 100644
index ded8ad0..0000000
--- a/app.json
+++ /dev/null
@@ -1,14 +0,0 @@
-{
- "healthchecks": {
- "web": [
- {
- "type": "readiness",
- "name": "web check",
- "description": "Checking if the app responds to the /actuator/health/readiness endpoint",
- "path": "/actuator/health/readiness",
- "port": 5000,
- "attempts": 3
- }
- ]
- }
-}