Skip to content

Commit

Permalink
Updated required version of bazel for Docker
Browse files Browse the repository at this point in the history
  • Loading branch information
feranick committed Jan 31, 2024
1 parent 05b32cb commit 90b03d9
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docker/Dockerfile
Expand Up @@ -54,7 +54,7 @@ RUN if grep 'Bionic Beaver' /etc/os-release > /dev/null; then \
&& DEBIAN_FRONTEND=noninteractive apt-get install -y gcc-9 g++-9; \
fi

ARG BAZEL_VERSION=5.3.0
ARG BAZEL_VERSION=6.1.0
RUN wget -O /bazel https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh && \
bash /bazel && \
rm -f /bazel
2 changes: 1 addition & 1 deletion docker/Dockerfile.windows
Expand Up @@ -52,5 +52,5 @@ ADD https://github.com/libusb/libusb/releases/download/v${LIBUSB_VERSION}/libusb
RUN 7z x -oc:\libusb c:\windows\temp\libusb-$env:LIBUSB_VERSION.7z

# Install Bazel
ARG BAZEL_VERSION=4.2.2
ARG BAZEL_VERSION=6.1.0
ADD https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-windows-x86_64.exe c:/windows/system32/bazel.exe
4 changes: 2 additions & 2 deletions workspace.bzl
Expand Up @@ -37,11 +37,11 @@ load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
#TENSORFLOW_COMMIT = "f841394b1b714c5cc5366536411cf146c8c570df"
#TENSORFLOW_SHA256 = "fa01678847283115e0b359ebb4db427ab88e289ab0b20376e1a2b3cb775eb720"

# TF release 2.14.1 as of 11/10/2023. Not working
# TF release 2.14.1 as of 11/10/2023.
#TENSORFLOW_COMMIT = "99d80a9e254c9df7940b2902b14d15914dbbbcd9"
#TENSORFLOW_SHA256 = "bede963ce97c4badcbb3149acd7c35a6a4954fa3361b777272a58a300e7e8f1d"

# TF release 2.15.0 as of 11/10/2023. Not working
# TF release 2.15.0 as of 11/10/2023. Current
TENSORFLOW_COMMIT = "6887368d6d46223f460358323c4b76d61d1558a8"
TENSORFLOW_SHA256 = "bb25fa4574e42ea4d452979e1d2ba3b86b39569d6b8106a846a238b880d73652"

Expand Down

0 comments on commit 90b03d9

Please sign in to comment.