Skip to content

Instantly share code, notes, and snippets.

@ColeMurray
Created November 28, 2018 05:33
Show Gist options
  • Save ColeMurray/edf80acfe34a69fdf25edf0aaecacbe7 to your computer and use it in GitHub Desktop.
Save ColeMurray/edf80acfe34a69fdf25edf0aaecacbe7 to your computer and use it in GitHub Desktop.
Docker file for age and gender estimation tutorial
FROM tensorflow/tensorflow:1.12.0-py3
RUN apt-get update \
&& apt-get install -y libsm6 libxrender-dev libxext6
ADD $PWD/requirements.txt /requirements.txt
RUN pip3 install -r /requirements.txt
CMD ["/bin/bash"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment