Skip to content

Commit

Permalink
fix: command 오타 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
clean2001 committed Oct 27, 2024
1 parent 668a012 commit 84c3d48
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion layer-api/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@ FROM openjdk:17

ARG JAR_FILE=./build/libs/*.jar
ARG SPRING_PROFILE
ARG JAR_PATH=./build/libs

COPY ${JAR_FILE} layer-server.jar
RUN echo "jar exist"
RUN "ls ./build/libs" # jar가 존재하는지 확인
RUN ls ${JAR_PATH} # jar가 존재하는지 확인

ENV SPRING_PROFILE=${SPRING_PROFILE}

Expand Down

0 comments on commit 84c3d48

Please sign in to comment.