Skip to content

Instantly share code, notes, and snippets.

@kalugny
Created January 31, 2017 12:19
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kalugny/7ee23b71608a1f11ede046dda7bb5240 to your computer and use it in GitHub Desktop.
Save kalugny/7ee23b71608a1f11ede046dda7bb5240 to your computer and use it in GitHub Desktop.
FROM tensorflow/tensorflow:0.12.1
RUN mkdir /src
WORKDIR /src
RUN apt-get update
RUN apt-get install -y git wget
RUN git clone https://github.com/openai/gym
WORKDIR /src/gym
RUN pip install -e .
WORKDIR /src
RUN pip install mujoco-py
RUN wget https://www.roboti.us/download/mjpro131_linux.zip
RUN mkdir /root/.mujoco
RUN unzip mjpro131_linux.zip -d /root/.mujoco
COPY mjkey.txt /root/.mujoco/
WORKDIR /notebooks
RUN git clone https://github.com/berkeleydeeprlcourse/hw1
EXPOSE 6006
EXPOSE 8888
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment