Skip to content

Instantly share code, notes, and snippets.

@ColeMurray
Last active November 28, 2018 05:51
Show Gist options
  • Save ColeMurray/a7e37dc45898b4b975d574bf16cfa94c to your computer and use it in GitHub Desktop.
Save ColeMurray/a7e37dc45898b4b975d574bf16cfa94c to your computer and use it in GitHub Desktop.
Dockerfile gpu variant for age and gender estimation tutorial
FROM tensorflow/tensorflow:1.12.0-gpu-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