Reamer commented on code in PR #4729:
URL: https://github.com/apache/zeppelin/pull/4729#discussion_r1522971481
##########
scripts/docker/zeppelin-interpreter/Dockerfile:
##########
@@ -30,7 +30,7 @@ ENV VERSION="${version}" \
RUN set -ex && \
/usr/bin/apt-get update && \
DEBIAN_FRONTEND=noninteractive /usr/bin/apt-get install -y
openjdk-11-jre-headless wget tini bzip2 && \
- /usr/bin/wget -qO-
https://micromamba.snakepit.net/api/micromamba/linux-64/latest | tar -xvj
bin/micromamba && \
+ /usr/bin/wget --no-iri -qO-
https://micromamba.snakepit.net/api/micromamba/linux-64/latest | tar -xvj
bin/micromamba && \
Review Comment:
I would use the following setting of wget. The other option seems to me to
switch off too much of the standard.
```suggestion
/usr/bin/wget --remote-encoding=utf-8 -qO-
https://micromamba.snakepit.net/api/micromamba/linux-64/latest | tar -xvj
bin/micromamba && \
```
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]