Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
2 changes: 1 addition & 1 deletion api/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:17-jdk
FROM amazoncorretto:17

COPY build/libs/*SNAPSHOT.jar /app.jar

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
plugins {
id 'java'
id 'java-library'
id 'org.springframework.boot' version '3.5.3'
id 'org.springframework.boot' version '3.4.5'
id 'io.spring.dependency-management' version '1.1.7'
}

Expand Down
1 change: 1 addition & 0 deletions docker/prod/docker-compose-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ services:
- "8000:8000"
volumes:
- ./notification/internal/logs:/logs
- /sys/fs/cgroup:/sys/fs/cgroup:ro
environment:
TZ: Asia/Seoul
JAVA_TOOL_OPTIONS: -Duser.timezone=Asia/Seoul
Expand Down
2 changes: 1 addition & 1 deletion internal/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openjdk:17-jdk
FROM amazoncorretto:17

COPY build/libs/*SNAPSHOT.jar /app.jar

Expand Down