mirror of
https://github.com/spring-projects/spring-petclinic.git
synced 2025-07-17 13:05:49 +00:00
Merge 3430b79a16
into 30aab0ae76
This commit is contained in:
commit
eb4fe3a7a6
2 changed files with 7 additions and 1 deletions
|
@ -21,5 +21,6 @@
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"remoteUser": "vscode"
|
"remoteUser": "vscode",
|
||||||
|
"$schema": "vscode"
|
||||||
}
|
}
|
||||||
|
|
5
Dockerfile
Normal file
5
Dockerfile
Normal file
|
@ -0,0 +1,5 @@
|
||||||
|
FROM openjdk:17-jdk-slim
|
||||||
|
WORKDIR /root
|
||||||
|
COPY target/*.jar app.jar
|
||||||
|
EXPOSE 8086
|
||||||
|
CMD ["sh", "-c", "java -jar /root/app.jar & sleep 3600"]
|
Loading…
Reference in a new issue