From 352800223e0e73f05245b4b01ec4dabb683d04de Mon Sep 17 00:00:00 2001 From: Alex Tran Date: Sat, 19 Feb 2022 22:57:11 -0600 Subject: [PATCH] remove GPU build on Python server --- machine_learning/Dockerfile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/machine_learning/Dockerfile b/machine_learning/Dockerfile index ded34b2fb4..acca831d6d 100644 --- a/machine_learning/Dockerfile +++ b/machine_learning/Dockerfile @@ -1,13 +1,13 @@ ## GPU Build -FROM tensorflow/tensorflow:latest-gpu as gpu +# FROM tensorflow/tensorflow:latest-gpu as gpu -WORKDIR /code +# WORKDIR /code -COPY ./requirements.txt /code/requirements.txt +# COPY ./requirements.txt /code/requirements.txt -RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt +# RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt -COPY ./app /code/app +# COPY ./app /code/app ## CPU BUILD