Skip to content

Commit 48b1405

Browse files
authored
Clean up the Dockerfile (#405)
Avoid use of wget without progress bar. Expressions don't expand in single quotes, use double quotes for that.
1 parent 2b6d488 commit 48b1405

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ RUN apk --no-cache add \
2121
git
2222

2323
# Build and install LLVM
24-
RUN wget "https://github.com/llvm/llvm-project/archive/llvmorg-${LLVM_VERSION}.tar.gz" || { echo 'Error downloading LLVM version ${LLVM_VERSION}' ; exit 1; }
24+
RUN wget --progress=dot:giga "https://github.com/llvm/llvm-project/archive/llvmorg-${LLVM_VERSION}.tar.gz" || { echo "Error downloading LLVM version ${LLVM_VERSION}" ; exit 1; }
2525

2626
RUN tar zxf llvmorg-${LLVM_VERSION}.tar.gz && rm llvmorg-${LLVM_VERSION}.tar.gz
2727

0 commit comments

Comments
 (0)