Skip to content

Commit d6d7be5

Browse files
author
Lee Jones
committed
Dockerfile: Make Docker image building verbose
This ensures each command is printed out before it is executed, which leads to a much friendlier log for debugging and the like. Signed-off-by: Lee Jones <lee.jones@linaro.org>
1 parent 0b9e06d commit d6d7be5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ ENV RC_VERSION 1.1.1
3636

3737
WORKDIR /app
3838

39-
RUN BUILDDEPS="python make git g++" \
39+
RUN set -x; BUILDDEPS="python make git g++" \
4040
&& apt-get update && apt-get install -y --no-install-recommends ${BUILDDEPS} \
4141
&& curl -fSL "https://releases.rocket.chat/${RC_VERSION}/download" -o rocket.chat.tgz \
4242
&& curl -fSL "https://releases.rocket.chat/${RC_VERSION}/asc" -o rocket.chat.tgz.asc \

0 commit comments

Comments
 (0)