Skip to content
Snippets Groups Projects
Dockerfile 322 B
Newer Older
FROM python:2.7.14-stretch
ARG tensorflow_version=1.4.0
WORKDIR /srv/sciencebeam-gym
RUN virtualenv venv
RUN venv/bin/pip install tensorflow==${tensorflow_version}
COPY sciencebeam_gym /srv/sciencebeam-gym/sciencebeam_gym
COPY *.conf *.sh *.in *.txt *.py /srv/sciencebeam-gym/
RUN venv/bin/pip install -r requirements.txt