blob: d037b0785741b2c779271d67c1ce37aafc81b849 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
--- WORKSPACE.orig 2022-05-22 22:28:22 UTC
+++ WORKSPACE
@@ -1,4 +1,15 @@
workspace(name = "org_tensorflow")
+register_toolchains("//freebsd:freebsd_py_toolchain")
+
+load("@bazel_tools//tools/build_defs/repo:http.bzl", "http_archive")
+http_archive(
+ name = "io_bazel_rules_docker",
+ sha256 = "7d453450e1eb70e238eea6b31f4115607ec1200e91afea01c25f9804f37e39c8",
+ strip_prefix = "rules_docker-0.10.0",
+ urls = [
+ "https://github.com/bazelbuild/rules_docker/releases/download/v0.10.0/rules_docker-v0.10.0.tar.gz",
+ ],
+)
# Initialize the TensorFlow repository and all dependencies.
#
|