Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ RUN mvn clean package -DskipTests
FROM amazoncorretto:21-alpine
WORKDIR /app

# Copy the generated JAR file from the builder stage
COPY --from=builder /app/target/*.jar app.jar
# Copy the generated fat (executable) JAR file, skipping the -plain.jar
COPY --from=builder /app/target/linkforge-[0-9]*.jar app.jar

# Expose the application port
EXPOSE 10000
Expand Down
Loading