Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/test #1774

Open
wants to merge 32 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
Show all changes
32 commits
Select commit Hold shift + click to select a range
a41f7b1
Create Dockerfile
marijastopa Jan 8, 2025
698b496
Create Jenkinsfile
marijastopa Jan 8, 2025
708cb3b
Update Jenkinsfile
marijastopa Jan 8, 2025
ca9e4ce
Update Jenkinsfile
marijastopa Jan 8, 2025
aab630d
Update Jenkinsfile
marijastopa Jan 8, 2025
522d1c3
Update Jenkinsfile
marijastopa Jan 8, 2025
b5984ed
Update Jenkinsfile
marijastopa Jan 8, 2025
e76b364
Update Jenkinsfile
marijastopa Jan 8, 2025
00149b9
Update Jenkinsfile
marijastopa Jan 9, 2025
76756da
Update Jenkinsfile
marijastopa Jan 10, 2025
f4e4e1d
Update Jenkinsfile
marijastopa Jan 10, 2025
4b63f62
Update Jenkinsfile
marijastopa Jan 13, 2025
89a88c0
Update Jenkinsfile
marijastopa Jan 13, 2025
5c06f69
Update Jenkinsfile
marijastopa Jan 13, 2025
42dee8a
Update new Jenkinsfile
marijastopa Jan 13, 2025
c76f820
Update Dockerfile
marijastopa Jan 17, 2025
be2eaba
Add Jenkinsfile for CI/CD pipeline
marijastopa Jan 17, 2025
afb5512
Update Jenkinsfile
marijastopa Jan 17, 2025
ce77562
Update Jenkinsfile
marijastopa Jan 17, 2025
4cccb3a
Update Jenkinsfile
marijastopa Jan 17, 2025
166f9bc
Update Jenkinsfile
marijastopa Jan 17, 2025
4e50b1a
Update Jenkinsfile
marijastopa Jan 17, 2025
1adcfae
Update Jenkinsfile
marijastopa Jan 17, 2025
ed292a0
Create Dockerfile.agent
marijastopa Jan 17, 2025
ee41c93
Update Jenkinsfile
marijastopa Jan 17, 2025
b8b8b71
Update Jenkinsfile
marijastopa Jan 17, 2025
5e3077e
Update Jenkinsfile
marijastopa Jan 17, 2025
f4c09a5
Update Jenkinsfile
marijastopa Jan 17, 2025
965b0f2
Update Jenkinsfile
marijastopa Jan 17, 2025
bf9c181
Update Jenkinsfile
marijastopa Jan 17, 2025
592b733
Update Jenkinsfile
marijastopa Jan 17, 2025
4c7c33d
Update Jenkinsfile
marijastopa Jan 17, 2025
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
Next Next commit
Create Dockerfile
  • Loading branch information
marijastopa authored Jan 8, 2025
commit a41f7b14b57cc418126bfef01e9ed86628a0abfd
15 changes: 15 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
FROM gradle:8-jdk-alpine AS build
WORKDIR /app

COPY . /app

RUN gradle clean build

FROM openjdk:17-jdk-slim
WORKDIR /app

COPY --from=build /app/build/libs/*.jar /app/app.jar

EXPOSE 8080

ENTRYPOINT ["java", "-jar", "/app/app.jar"]