https://github.com/openai/baselines
Revision 58541db22650ee431fbcb5d5cef57e7b72ea7913 authored by Yu Feng on 01 April 2019, 22:38:45 UTC, committed by pzhokhov on 01 April 2019, 22:38:45 UTC
1 parent c02b575
Raw File
Tip revision: 58541db22650ee431fbcb5d5cef57e7b72ea7913 authored by Yu Feng on 01 April 2019, 22:38:45 UTC
MPI refer to workers as ranks, not threads. (#833)
Tip revision: 58541db
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