Revision 555a5cbbb2b615aac65d62ff08bbf87f4c28eefc authored by ahuhn on 22 September 2018, 00:22:56 UTC, committed by pzhokhov on 22 September 2018, 00:22:56 UTC
* Adding num_env to readme example

* Updated readme example fix
1 parent 8158f35
Raw File
Dockerfile
FROM ubuntu:16.04

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
ENV VENV /root/venv

RUN \
    pip install virtualenv && \
    virtualenv $VENV --python=python3 && \
    . $VENV/bin/activate && \
    pip install --upgrade pip

ENV PATH=$VENV/bin:$PATH

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