Skip to content

Commit 2d66c17

Browse files
committed
Fix build image error
1 parent aaf3da0 commit 2d66c17

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ WORKDIR /app
77
# Copy the project file to the working directory
88
COPY . .
99

10-
# Build the project
11-
RUN ./mvnw clean package -DskipTests=true
10+
# Build the project using mvn directly (mvn is available in the maven image)
11+
RUN mvn clean package -DskipTests=true
1212

1313
# Use a smaller base image
1414
FROM alpine

0 commit comments

Comments
 (0)