Skip to content

Commit c3a9519

Browse files
committed
fix: use -fsSL flag for curl command in Dockerfile to improve reliability
1 parent d881251 commit c3a9519

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ RUN \
216216
else \
217217
# Install specific version
218218
apt-get update -qq &&\
219-
curl -L --output /tmp/chrome.deb "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb" &&\
219+
curl -fsSL --output /tmp/chrome.deb "https://dl.google.com/linux/chrome/deb/pool/main/g/google-chrome-stable/google-chrome-stable_${CHROME_VERSION}_amd64.deb" &&\
220220
DEBIAN_FRONTEND=noninteractive apt-get install -y -qq --no-install-recommends /tmp/chrome.deb &&\
221221
mv /usr/bin/google-chrome-stable /usr/bin/chromium &&\
222222
rm -rf /tmp/chrome.deb; \

0 commit comments

Comments
 (0)