brain-slug
brain-slug
Same here, thanks for your efforts to make java based ssh ready for the future @mwiede ❤️
Curious about the fact it worked using `CURL_PARAMS="-v"` I started playing with locale settings... After some more debugging I found setting `CURL_PARAMS="--raw"` fixes the issue for me. From curl man-pages...
Hi @albuch I am pretty sure it is due to encoding issues. By default the ubuntu base image comes with the following locale setting: ``` LANG= LANGUAGE= LC_CTYPE="POSIX" LC_NUMERIC="POSIX" LC_TIME="POSIX"...
Unfortunately this did not fix the issue. Ubuntu base image ships with C.UTF-8 so I actually tried setting the ENV in the Dockerfile removing the CURL_PARAMS `--raw`: ``` ENV LANG...