Re: [Flent-users] [tohojo/flent] Docker image creation fails with ascii codec error (#142)

2018-07-19 Thread Toke Høiland-Jørgensen
Closed #142. -- You are receiving this because you are subscribed to this thread. Reply to this email directly or view it on GitHub: https://github.com/tohojo/flent/issues/142#event-1742560757___ Flent-users mailing list Flent-users@flent.org http://fle

Re: [Flent-users] [tohojo/flent] Docker image creation fails with ascii codec error (#142)

2018-07-19 Thread Toke Høiland-Jørgensen
Manuel Mendez writes: > This is a problem with missing UTF8 locale in the default > ubuntu:xenial base image, this Dockerfile worked for me: Great, thanks for investigating! Closing this issue, then... -- You are receiving this because you are subscribed to this thread. Reply to this email di

Re: [Flent-users] [tohojo/flent] Docker image creation fails with ascii codec error (#142)

2018-07-19 Thread Manuel Mendez
This is a problem with missing UTF8 locale in the default ubuntu:xenial base image, this Dockerfile worked for me: ``` FROM ubuntu:xenial RUN apt-get update && \ apt-get install -y locales software-properties-common && \ sed -i -e 's/# en_US.UTF-8 UTF-8/en_US.UTF-8 UTF-8/' /etc/locale.gen

Re: [Flent-users] [tohojo/flent] Docker image creation fails with ascii codec error (#142)

2018-07-13 Thread Toke Høiland-Jørgensen
This looks like the docker tooling is choking on the non-ASCII characters in my name. That command doesn't even get to the point where it runs any flent code. I think this is either a docker or an Ubuntu bug. Don't know enough about either to tell which... -- You are receiving this because yo

[Flent-users] [tohojo/flent] Docker image creation fails with ascii codec error (#142)

2018-07-13 Thread Arun Gupta
Trying to create a Docker image using the following file: ``` FROM ubuntu:xenial RUN apt-get update && apt-get install -y sudo && sudo apt-get install -y software-properties-common RUN sudo add-apt-repository ppa:tohojo/flent RUN sudo apt-get update ``` Here is the command: ``` docker image b