Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
M
MySpringWeb
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
김영훈
MySpringWeb
Merge requests
!9
modify JenkinsFile
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
modify JenkinsFile
master
into
main
Overview
0
Commits
3
Pipelines
0
Changes
2
Merged
김영훈
requested to merge
master
into
main
2 years ago
Overview
0
Commits
3
Pipelines
0
Changes
2
Expand
0
0
Merge request reports
Compare
main
version 2
40d99fca
2 years ago
version 1
c8f9cb6b
2 years ago
main (base)
and
latest version
latest version
01835cb7
3 commits,
2 years ago
version 2
40d99fca
2 commits,
2 years ago
version 1
c8f9cb6b
1 commit,
2 years ago
2 files
+
15
−
0
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
2
Search (e.g. *.vue) (Ctrl+P)
Dockerfile
0 → 100644
+
5
−
0
Options
FROM
openjdk:17
ARG
JAR_FILE=target/myweb*.jar
COPY
${JAR_FILE} app.jar
EXPOSE
80
ENTRYPOINT
["java","-jar","/app.jar"]
\ No newline at end of file
Loading