Skip to content

Commit

Permalink
[BE] fix: gradlew not found 이슈 해결 (#24)
Browse files Browse the repository at this point in the history
Signed-off-by: EunJiJung <[email protected]>
  • Loading branch information
bianbbc87 committed Feb 4, 2025
1 parent 78ffbfb commit 0f075a8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 7 deletions.
6 changes: 0 additions & 6 deletions .github/workflows/be-main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,12 +175,6 @@ jobs:
if: ${{ needs.check-folder-change.outputs.msa_discovery_changed == 'true' }}
runs-on: ubuntu-latest
steps:
# 레포 가져오기
- name: Checkout repository
uses: actions/checkout@v3
- name: Print current working directory
run: pwd

- name: Build & Push MSA Discovery
uses: ./.github/actions/ecr-push
with:
Expand Down
4 changes: 3 additions & 1 deletion src/backend/discovery-server/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,11 @@ FROM amazoncorretto:17-alpine AS builder

WORKDIR /app

# Gradle 설치
RUN apk add --no-cache gradle

COPY . /app

RUN chmod +x ./gradlew
RUN ./gradlew clean build -x test

# 실행 단계
Expand Down

0 comments on commit 0f075a8

Please sign in to comment.