https://github.com/openai/baselines
Raw File
Tip revision: ea25b9e8b234e6ee1bca43083f8f3cf974143998 authored by Harry Uglow on 31 January 2020, 13:06:18 UTC
Monitor should close what it inherits (#1076)
Tip revision: ea25b9e
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 < 2' && \
    pip install -e .[test]


CMD /bin/bash
back to top