-
Notifications
You must be signed in to change notification settings - Fork 295
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixed docker build. #165
base: master
Are you sure you want to change the base?
Fixed docker build. #165
Conversation
Just FYI, I have no idea if python3 is really being used. But it's checked for in |
Thank you for the patch! |
Hmm, failed travis because travis does this:
The nose stuff was added here a374828#diff-2eeaed663bd0d25b7e608891384b7298 then partially removed here (2 years ago): 5452700#diff-2eeaed663bd0d25b7e608891384b7298 Not sure if you want to put 'nose' back in setup.py or remove it from .travis.yml .... Can this be merged? |
I am not interested in maintaining nose support. Let's take it out. |
Getting following error when building with docker - want to confirm if anyone can correctly build with 479af55
|
I built the docker image locally using the changes in this pull. The tricks:
|
@strob , I don't know enough about what travis is doing to finish this off. What's the change for line 12? Or do we remove the last 2 lines? Remove .travis.yml? |
Unfortunately I am not actively using the docker image and also don't know
how Travis works. I am happy to accept a PR if others find the Docker
support useful.
…On Thu, May 24, 2018 at 12:55 PM, tlc ***@***.***> wrote:
@strob <https://github.com/strob> , I don't know enough about what travis
is doing to finish this off. What's the alternative for line 12? Or do we
remove the last 2 lines? Remove .travis.yml?
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#165 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AAMup0YagE-3HwuJJm0xlAcKyJBDpORqks5t1pG8gaJpZM4UJDNt>
.
|
@tlc - yeah... tried building via a clean directory wuth relative build path Thinking I may have to go down the git submodule route - |
|
Cool! Thanks @tlc appreciate the walkthrough!
On Thu, 24 May 2018 at 9:06 PM, tlc ***@***.***> wrote:
@denistsoi <https://github.com/denistsoi>
Step 8/10 : EXPOSE 8765
---> Running in 9b0c2893e999
---> fcf741273140
Removing intermediate container 9b0c2893e999
Step 9/10 : VOLUME /gentle/webdata
---> Running in 44d517e1037f
---> 9cc37a4f4299
Removing intermediate container 44d517e1037f
Step 10/10 : CMD cd /gentle && python serve.py
---> Running in 253ef75f3cf0
---> 5fb9a1eb3e04
Removing intermediate container 253ef75f3cf0
Successfully built 5fb9a1eb3e04
***@***.***:~/gentile3$ history |tail -n5
2004 git clone https://github.com/tlc/gentle.git .
2005 git submodule init
2006 git submodule update
2007 sudo docker build .
2008 history |tail -n5
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#165 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AC64E4HDDeax5fNhCGRs-vWwYQ8mDXI-ks5t1rBWgaJpZM4UJDNt>
.
--
.
|
@stob It looks like you cherry-picked parts of this commit. If you add the 'gfortran' reference, too, your travis CI won't fail here: (it'll fail later), and your docker hub pushes should work https://hub.docker.com/r/lowerquality/gentle/builds/ |
Minor problems, apparently from kaldi changes, caused the docker build to fail.
#164