Guest User

Untitled

a guest
Nov 14th, 2018
119
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.39 KB | None | 0 0
  1. FROM ubuntu:18.04
  2.  
  3. RUN apt-get update -y
  4. RUN apt-get upgrade -y
  5.  
  6. RUN apt-get install -y python3.6 python-pip python-dev build-essential
  7.  
  8. ADD ./ xmoto-gym
  9.  
  10. RUN pip install -e xmoto-gym
  11.  
  12. RUN pip install -e xmoto-gym/batch-ppo-master
  13.  
  14. CMD Xvfb :99 -screen 0 1024x768x24 +extension GLX +render -noreset &
  15.  
  16. CMD DISPLAY=:99
  17.  
  18. CMD python3 -m batch-ppo-master.agents.scripts.train --config=xmoto --noenv_processes
Add Comment
Please, Sign In to add comment