Skip to content

Commit

Permalink
Revert "Bump libtensorflow to 2.15 (#3935)" (#3936)
Browse files Browse the repository at this point in the history
This reverts commit 0f786d3.

Signed-off-by: Sergio Castaño Arteaga <tegioz@icloud.com>
  • Loading branch information
tegioz authored Jul 15, 2024
1 parent 0f786d3 commit 15b1249
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions cmd/tracker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Build tracker
FROM golang:1.22.4-bullseye AS builder
WORKDIR /tmp
ENV LIBTENSORFLOW_TGZ libtensorflow-cpu-linux-x86_64-2.15.0.tar.gz
ENV LIBTENSORFLOW_TGZ libtensorflow-cpu-linux-x86_64-2.11.0.tar.gz
RUN wget -q --no-check-certificate https://storage.googleapis.com/tensorflow/libtensorflow/$LIBTENSORFLOW_TGZ
RUN tar -C /usr/local -xzf $LIBTENSORFLOW_TGZ
RUN ldconfig /usr/local/lib
Expand All @@ -27,8 +27,9 @@ RUN apt-get update \
&& groupadd -g 1000 tracker \
&& useradd -u 1000 -g tracker tracker
WORKDIR /tmp
ENV LIBTENSORFLOW_TGZ libtensorflow-cpu-linux-x86_64-2.15.0.tar.gz
ENV LIBTENSORFLOW_TGZ libtensorflow-cpu-linux-x86_64-2.11.0.tar.gz
RUN apt-get install -y wget \
&& export LIBTENSORFLOW_TGZ=libtensorflow-cpu-linux-x86_64-2.11.0.tar.gz \
&& wget -q --no-check-certificate https://storage.googleapis.com/tensorflow/libtensorflow/$LIBTENSORFLOW_TGZ \
&& tar -C /usr/local -xzf $LIBTENSORFLOW_TGZ \
&& rm $LIBTENSORFLOW_TGZ \
Expand Down

0 comments on commit 15b1249

Please sign in to comment.