Skip to content
Snippets Groups Projects
Commit 1676d1f1 authored by kim daeun's avatar kim daeun
Browse files

Docker

parent 138bdd7f
No related branches found
No related tags found
No related merge requests found
FROM openjdk:17-jdk
WORKDIR /app
COPY target/*.jar app.jar
EXPOSE 8080
ENTRYPOINT ["java","-jar","app.jar"]
version: "3.3"
services:
myweb:
build: .
ports:
- "8080:8080"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment