Damien Jarry
Damien Jarry
I got a 1 second lag' with 31 entries... @MonliH Can you share (privately ?) a tutorial for your smooth solution ?
I did and got > TypeError: Unexpected keyword argument passed to optimizer: learning_rate
That's because of setup.py ```python install_requires=[ # [...] 'hyperopt==0.1.2' ] ```
Hi @zuazo , We can reproduce with this simple Dockerfile : ```Dockerfile FROM ubuntu:16.04 ARG NODE_VERSION=7.9.0 ARG NPM_VERSION=4.5.0 # avoid error 'debconf: unable to initialize frontend: Dialog' on build ARG...
Okay thanks, I understand the way you do it ; wish we could run the container with some specific arguments (like environnement variables, command), but seems to be not possible...
Small addition: If I run the docker builded and type `id -u` in the shell, it works ; If I run the docker builded with the command `id -u`, it...
Hi, new test did today : ```ruby describe command('/usr/local/bin/gosu 6000:6000 id -u') do its(:stdout) { should match /6000/ } end ``` This works. So this is not a "gosu" problem...
Hi, after searching a week on that, I think the problem is maybe on Docker itself. Dockerspec depends on Serverspec, which depends on SpecInfra. On the last, I found the...
Thanks, I see multiple possibilities : * For my particular case, maybe use the "--user" flag instead of "gosu". I don't know if the --user flag is reused when Serverspec...
Hi, I like this way you wrote : ```ruby describe command('ps -o uid $(pidof bash)') do its(:stdout) { should match /6000/ } end ``` :) For my particular case, I...