Revision fa37beb52e867dd7bd9ae6cdeb3a5e64f22f8546 authored by Peter Zhokhov on 07 April 2019, 03:03:32 UTC, committed by Peter Zhokhov on 07 April 2019, 03:03:32 UTC
1 parent 8a97e0d
Raw File
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