https://github.com/openai/baselines
Raw File
Tip revision: 401a89e515c995038bd4e5879c3f21731d4d4ab0 authored by Jonathan Raiman on 23 May 2019, 22:43:48 UTC
add tuple pdtype
Tip revision: 401a89e
Dockerfile
FROM python:3.6

RUN apt-get -y update && apt-get -y install ffmpeg
# RUN apt-get -y update && apt-get -y install git wget python-dev python3-dev libopenmpi-dev python-pip zlib1g-dev cmake python-opencv

ENV CODE_DIR /root/code

COPY . $CODE_DIR/baselines
WORKDIR $CODE_DIR/baselines

# Clean up pycache and pyc files
RUN rm -rf __pycache__ && \
    find . -name "*.pyc" -delete && \
    pip install tensorflow && \
    pip install -e .[test]


CMD /bin/bash
back to top