We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5f253a4 commit 8b17db9Copy full SHA for 8b17db9
.github/workflows/deploy.yml
@@ -4,6 +4,8 @@ name: Java CI/CD with Gradle - RideOn
4
on:
5
push:
6
branches: [ "develop" ]
7
+ pull_request:
8
+ branches: [ "develop" ]
9
workflow_dispatch:
10
11
permissions:
@@ -58,7 +60,7 @@ jobs:
58
60
# Weather API
59
61
WEATHER_API_KEY: ${{ secrets.WEATHER_API_KEY }}
62
- # Vworld API
63
+ # VWorld API
64
VWORLD_API_KEY: ${{ secrets.VWORLD_API_KEY }}
65
66
# Llama API
Dockerfile
@@ -10,7 +10,7 @@ COPY src ./src
RUN gradle bootJar --no-daemon
12
# 2단계: Runtime
13
-FROM eclipse-temurin:17-jdk-jammy
+FROM eclipse-temurin:17-jdk
14
WORKDIR /app
15
16
COPY --from=build /app/build/libs/*.jar app.jar
0 commit comments