Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save Adeotan/08d19aa86cfa9f6d780f1005865d5f4c to your computer and use it in GitHub Desktop.
Save Adeotan/08d19aa86cfa9f6d780f1005865d5f4c to your computer and use it in GitHub Desktop.
FROM python:3.6-slim-stretch
RUN apt-get update && apt-get install -y git time
RUN pip install https://anaconda.org/intel/tensorflow/1.6.0/download/tensorflow-1.6.0-cp36-cp36m-linux_x86_64.whl
RUN git clone https://github.com/tensorflow/models.git
ENV PYTHONPATH $PYTHONPATH:$HOME/models
WORKDIR $HOME/models/official/wide_deep
RUN python ./data_download.py
ENTRYPOINT python ./wide_deep.py
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment