Use correct 1.15.4 docker image

This commit is contained in:
Alexandre Lissy 2020-09-28 10:23:00 +02:00
parent 3ebcbdea91
commit 56264ea4b7

View File

@ -1,6 +1,6 @@
# Please refer to the TRAINING documentation, "Basic Dockerfile for training" # Please refer to the TRAINING documentation, "Basic Dockerfile for training"
FROM tensorflow/tensorflow:1.15.2-gpu-py3 FROM tensorflow/tensorflow:1.15.4-gpu-py3
ENV DEBIAN_FRONTEND=noninteractive ENV DEBIAN_FRONTEND=noninteractive
ENV DEEPSPEECH_REPO=#DEEPSPEECH_REPO# ENV DEEPSPEECH_REPO=#DEEPSPEECH_REPO#
@ -43,9 +43,6 @@ RUN pip3 install --upgrade native_client/ctcdecode/dist/*.whl
# Prepare deps # Prepare deps
RUN pip3 install --upgrade pip==20.2.2 wheel==0.34.2 setuptools==49.6.0 RUN pip3 install --upgrade pip==20.2.2 wheel==0.34.2 setuptools==49.6.0
# FIXME: Hack because no 1.15.4 Docker image
RUN pip3 install --upgrade tensorflow-gpu==1.15.4
# Install DeepSpeech # Install DeepSpeech
# - No need for the decoder since we did it earlier # - No need for the decoder since we did it earlier
# - There is already correct TensorFlow GPU installed on the base image, # - There is already correct TensorFlow GPU installed on the base image,