automatron
automatron copied to clipboard
Failed Docker build
Just getting started with automatron and when the docker image build for automatron I'm getting an error at Step 8/9 :
RUN find -name "*.sh" -exec chmod 755 {} ; ---> Running in 5d9bd72dd891 find: './proc/1/map_files': Operation not permitted
I did a manual work around so this is just an FYI.
It looks like fabric was updated and pip install fabric==1.14.0 is needed now?
One last note... I did this quick hack to deal with missing time zones in the docker file - RUN TERM=xterm-256color && export DEBIAN_FRONTEND=noninteractive && apt-get install -y tzdata RUN ln -fs /usr/share/zoneinfo/America/New_York /etc/localtime RUN dpkg-reconfigure --frontend noninteractive tzdata
I'm happy to make edit and do a pull request. I appreciate the software.
--Don
Florida State University Research Computing
And one more note for someone trying to get this up and running - The error "ssh cannot import name certificate_transparency" can be resolved by adding the following to your docker build file.
RUN pip install --process-dependency-links ctutlz
Howdie thanks for reporting the build issues. Are you building from the master branch or the develop branch?
#123 took care of a lot of these. I’m going to do another release here in a few to push these fixed to master.
Was using the master branch. Thanks for the reply and have a good weekend.
--Don
I pulled the master branch and 2 of those issues are still there...
The error - DEBUG - Could not login to discovered host xxxxx - cannot import name certificate_transparency
Is resolved with pip install --process-dependency-links ctutlz
I did get the tinezone fix.