We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b20e4e4 + ed43ed5 commit 06cbd70Copy full SHA for 06cbd70
3 files changed
.github/workflows/ci.yml
@@ -0,0 +1,14 @@
1
+name: CI Pipeline
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
+ pull_request:
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - name: Checkout code
14
+ uses: actions/checkout@v3
Dockerfile
@@ -0,0 +1,9 @@
+FROM maven:3.9.6-eclipse-temurin-17 AS build
+WORKDIR /app
+COPY . .
+RUN mvn package -DskipTests
+FROM eclipse-temurin:17-jre-noble as package
+COPY --from=build /app/target/sysfoo-*.jar ./sysfoo.jar
+EXPOSE 8080
+ENTRYPOINT ["java", "-jar", "sysfoo.jar"]
README.md
@@ -1,6 +1,6 @@
# Sysfoo Application
-Hi, there! Applied first rule!
+Hi, reviewer! Applied first rule! Please review!
A Devops Learning App
## About the Application
0 commit comments