Skip to content

Commit

Permalink
remove GPU build on Python server
Browse files Browse the repository at this point in the history
  • Loading branch information
alextran1502 committed Feb 20, 2022
1 parent 619735f commit 3528002
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions machine_learning/Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand Down

0 comments on commit 3528002

Please sign in to comment.