Skip to content

Commit 0a9da4f

Browse files
committed
fix: Dockerfile 수정 (&& 추가)
1 parent 7a930f0 commit 0a9da4f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ ARG JAR_FILE=build/libs/concoder-0.0.1-SNAPSHOT.jar
33
COPY ${JAR_FILE} app.jar
44
ENV SPRING_PROFILES_ACTIVE=prod
55

6-
RUN apt-get update \
7-
apt-get install build-essential
6+
RUN apt-get update -y && \
7+
apt-get install build-essential -y
88

99
ENTRYPOINT ["java","-jar","/app.jar"]

0 commit comments

Comments
 (0)