GitHub user rdubois-mel edited a discussion: Difference in number format between local and docker
Hello, I have a difference between the execution of my pipeline on local and Docker. I have a Filter row with a Number value: "0,00", with a comma. I can't validate the window if I specify "0.00" with a dot. But when I run the pipeline in Docker, I get the following error: `constant String: couldn't convert String to number: non-numeric character found at position 2 for value [0,00] ` I modified my Docker image (based on the official one) by adding this, ``` USER root # Configuration locales RUN apk add --no-cache \ musl-locales \ musl-locales-lang \ gettext \ tzdata # Définir la locale à fr_FR.UTF-8 ENV LANG=fr_FR.UTF-8 \ LANGUAGE=fr_FR:fr \ LC_ALL=fr_FR.UTF-8 USER hop RUN export JAVA_OPTS="$JAVA_OPTS -Duser.language=fr -Duser.country=FR" ``` but it doesn't change anything. How can I get the same behavior on my local and Docker container? Thanks, Rémi GitHub link: https://github.com/apache/hop/discussions/5449 ---- This is an automatically sent email for users@hop.apache.org. To unsubscribe, please send an email to: users-unsubscr...@hop.apache.org