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:
parent
c2dbce7f9e
commit
1689e1fe22
@ -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}
|
||||
|
@ -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}
|
||||
|
@ -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 \
|
||||
|
@ -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 \
|
||||
|
@ -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 \
|
||||
|
@ -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 \
|
||||
|
@ -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 \
|
||||
|
@ -1 +1,3 @@
|
||||
FROM ubuntu:${UBUNTU_VERSION} as base
|
||||
|
||||
RUN apt-get update && apt-get install -y curl
|
||||
|
Loading…
Reference in New Issue
Block a user