Update Dockerfile to TensorFlow 0.11.0

This commit is contained in:
Aurélien Geron
2016-11-24 21:57:26 +01:00
parent 924abd5b18
commit 76a192606f
4 changed files with 50 additions and 131 deletions

11
.binder_start Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/bash
function jupyter {
# Run Jupyter with xvfb-run so that it can render the CartPole
# environment without crashing:
xvfb-run -s "-screen 0 1400x900x24" /home/main/.local/bin/jupyter $@
}
function ipython {
jupyter $@
}