diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..92e782d --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM amd64/amazoncorretto:17 + +WORKDIR /app + +COPY ./build/libs/Together-0.0.1-SNAPSHOT.jar /app/together.jar + +CMD ["java", "-Duser.timezone=Asia/Seoul", "-jar", "together.jar"]