Skip to content

Commit 90b03d9

Browse files
committed
Updated required version of bazel for Docker
1 parent 05b32cb commit 90b03d9

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ RUN if grep 'Bionic Beaver' /etc/os-release > /dev/null; then \
5454
&& DEBIAN_FRONTEND=noninteractive apt-get install -y gcc-9 g++-9; \
5555
fi
5656

57-
ARG BAZEL_VERSION=5.3.0
57+
ARG BAZEL_VERSION=6.1.0
5858
RUN wget -O /bazel https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-installer-linux-x86_64.sh && \
5959
bash /bazel && \
6060
rm -f /bazel

docker/Dockerfile.windows

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,5 +52,5 @@ ADD https://github.com/libusb/libusb/releases/download/v${LIBUSB_VERSION}/libusb
5252
RUN 7z x -oc:\libusb c:\windows\temp\libusb-$env:LIBUSB_VERSION.7z
5353

5454
# Install Bazel
55-
ARG BAZEL_VERSION=4.2.2
55+
ARG BAZEL_VERSION=6.1.0
5656
ADD https://github.com/bazelbuild/bazel/releases/download/${BAZEL_VERSION}/bazel-${BAZEL_VERSION}-windows-x86_64.exe c:/windows/system32/bazel.exe

workspace.bzl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,11 +37,11 @@ load("@bazel_tools//tools/build_defs/repo:utils.bzl", "maybe")
3737
#TENSORFLOW_COMMIT = "f841394b1b714c5cc5366536411cf146c8c570df"
3838
#TENSORFLOW_SHA256 = "fa01678847283115e0b359ebb4db427ab88e289ab0b20376e1a2b3cb775eb720"
3939

40-
# TF release 2.14.1 as of 11/10/2023. Not working
40+
# TF release 2.14.1 as of 11/10/2023.
4141
#TENSORFLOW_COMMIT = "99d80a9e254c9df7940b2902b14d15914dbbbcd9"
4242
#TENSORFLOW_SHA256 = "bede963ce97c4badcbb3149acd7c35a6a4954fa3361b777272a58a300e7e8f1d"
4343

44-
# TF release 2.15.0 as of 11/10/2023. Not working
44+
# TF release 2.15.0 as of 11/10/2023. Current
4545
TENSORFLOW_COMMIT = "6887368d6d46223f460358323c4b76d61d1558a8"
4646
TENSORFLOW_SHA256 = "bb25fa4574e42ea4d452979e1d2ba3b86b39569d6b8106a846a238b880d73652"
4747

0 commit comments

Comments
 (0)