Make curl available on all tensorflow docker images

While working on some Kubeflow Pipelines automation
we noticed the gpu based tf images had curl installed
while the non-gpu didn't which was causing some issues.

This consistently make curl available on all images.
This commit is contained in:
Luciano Resende 2019-09-04 19:49:18 +01:00
parent c2dbce7f9e
commit 1689e1fe22
8 changed files with 15 additions and 5 deletions

View File

@ -23,6 +23,8 @@ ARG UBUNTU_VERSION=18.04
FROM ubuntu:${UBUNTU_VERSION} as base
RUN apt-get update && apt-get install -y curl
ARG USE_PYTHON_3_NOT_2
ARG _PY_SUFFIX=${USE_PYTHON_3_NOT_2:+3}
ARG PYTHON=python${_PY_SUFFIX}

View File

@ -23,6 +23,8 @@ ARG UBUNTU_VERSION=18.04
FROM ubuntu:${UBUNTU_VERSION} as base
RUN apt-get update && apt-get install -y curl
ARG USE_PYTHON_3_NOT_2
ARG _PY_SUFFIX=${USE_PYTHON_3_NOT_2:+3}
ARG PYTHON=python${_PY_SUFFIX}

View File

@ -23,6 +23,8 @@ ARG UBUNTU_VERSION=18.04
FROM ubuntu:${UBUNTU_VERSION} as base
RUN apt-get update && apt-get install -y curl
ARG USE_PYTHON_3_NOT_2
ARG _PY_SUFFIX=${USE_PYTHON_3_NOT_2:+3}
ARG PYTHON=python${_PY_SUFFIX}
@ -48,7 +50,7 @@ RUN ln -s $(which ${PYTHON}) /usr/local/bin/python
# tf-nightly
# tf-nightly-gpu
ARG TF_PACKAGE=tensorflow
RUN apt-get update && apt-get install -y wget libhdf5-dev
RUN apt-get update && apt-get install -y curl libhdf5-dev wget
RUN ${PIP} install --global-option=build_ext \
--global-option=-I/usr/include/hdf5/serial/ \
--global-option=-L/usr/lib/powerpc64le-linux-gnu/hdf5/serial \

View File

@ -23,6 +23,8 @@ ARG UBUNTU_VERSION=18.04
FROM ubuntu:${UBUNTU_VERSION} as base
RUN apt-get update && apt-get install -y curl
ARG USE_PYTHON_3_NOT_2
ARG _PY_SUFFIX=${USE_PYTHON_3_NOT_2:+3}
ARG PYTHON=python${_PY_SUFFIX}
@ -48,7 +50,7 @@ RUN ln -s $(which ${PYTHON}) /usr/local/bin/python
# tf-nightly
# tf-nightly-gpu
ARG TF_PACKAGE=tensorflow
RUN apt-get update && apt-get install -y wget libhdf5-dev
RUN apt-get update && apt-get install -y curl libhdf5-dev wget
RUN ${PIP} install --global-option=build_ext \
--global-option=-I/usr/include/hdf5/serial/ \
--global-option=-L/usr/lib/powerpc64le-linux-gnu/hdf5/serial \

View File

@ -89,7 +89,7 @@ RUN ln -s $(which ${PYTHON}) /usr/local/bin/python
# tf-nightly
# tf-nightly-gpu
ARG TF_PACKAGE=tensorflow
RUN apt-get update && apt-get install -y wget libhdf5-dev
RUN apt-get update && apt-get install -y curl libhdf5-dev wget
RUN ${PIP} install --global-option=build_ext \
--global-option=-I/usr/include/hdf5/serial/ \
--global-option=-L/usr/lib/powerpc64le-linux-gnu/hdf5/serial \

View File

@ -89,7 +89,7 @@ RUN ln -s $(which ${PYTHON}) /usr/local/bin/python
# tf-nightly
# tf-nightly-gpu
ARG TF_PACKAGE=tensorflow
RUN apt-get update && apt-get install -y wget libhdf5-dev
RUN apt-get update && apt-get install -y curl libhdf5-dev wget
RUN ${PIP} install --global-option=build_ext \
--global-option=-I/usr/include/hdf5/serial/ \
--global-option=-L/usr/lib/powerpc64le-linux-gnu/hdf5/serial \

View File

@ -4,7 +4,7 @@
# tf-nightly
# tf-nightly-gpu
ARG TF_PACKAGE=tensorflow
RUN apt-get update && apt-get install -y wget libhdf5-dev
RUN apt-get update && apt-get install -y curl libhdf5-dev wget
RUN ${PIP} install --global-option=build_ext \
--global-option=-I/usr/include/hdf5/serial/ \
--global-option=-L/usr/lib/powerpc64le-linux-gnu/hdf5/serial \

View File

@ -1 +1,3 @@
FROM ubuntu:${UBUNTU_VERSION} as base
RUN apt-get update && apt-get install -y curl