Skip to content

Commit

Permalink
[refactor] #25 - 명령어 오타 수정 (#27)
Browse files Browse the repository at this point in the history
* [#25] refactor: 명령어 분리

* [#25] refactor: docker-compose image 참조로 변경

* [#25] refactor: CD image pull로 변경

* [#25] refactor: 명령어 분리
  • Loading branch information
hyerinhwang-sailin authored Jan 14, 2025
1 parent 1ee3e76 commit b9b4546
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile-dev
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /usr/src
COPY . /usr/src

# 빌드 (테스트 스킵)
RUN chmod +x ./gradlew \
RUN chmod +x ./gradlew
RUN ./gradlew clean build -x test

FROM openjdk:17-jdk-alpine
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile-prod
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ WORKDIR /usr/src
COPY . /usr/src

# 빌드 (테스트 스킵)
RUN chmod +x ./gradlew \
RUN chmod +x ./gradlew
RUN ./gradlew clean build -x test

FROM openjdk:17-jdk-alpine
Expand Down

0 comments on commit b9b4546

Please sign in to comment.