Skip to content

Commit 8b17db9

Browse files
committed
hotfix: 미지원 이미지 제거
1 parent 5f253a4 commit 8b17db9

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ name: Java CI/CD with Gradle - RideOn
44
on:
55
push:
66
branches: [ "develop" ]
7+
pull_request:
8+
branches: [ "develop" ]
79
workflow_dispatch:
810

911
permissions:
@@ -58,7 +60,7 @@ jobs:
5860
# Weather API
5961
WEATHER_API_KEY: ${{ secrets.WEATHER_API_KEY }}
6062

61-
# Vworld API
63+
# VWorld API
6264
VWORLD_API_KEY: ${{ secrets.VWORLD_API_KEY }}
6365

6466
# Llama API

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ COPY src ./src
1010
RUN gradle bootJar --no-daemon
1111

1212
# 2단계: Runtime
13-
FROM eclipse-temurin:17-jdk-jammy
13+
FROM eclipse-temurin:17-jdk
1414
WORKDIR /app
1515

1616
COPY --from=build /app/build/libs/*.jar app.jar

0 commit comments

Comments
 (0)