File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change @@ -94,7 +94,7 @@ RUN mkdir /bazel && \
94
94
95
95
# Download TF Serving sources (optionally at specific commit).
96
96
WORKDIR /tensorflow-serving
97
- RUN curl -sSL --retry 5 https://github.com/tensorflow/serving/tarball/${TF_SERVING_VERSION_GIT_COMMIT} | tar --strip-components=1 -xzf -
97
+ COPY . .
98
98
99
99
FROM base_build as binary_build
100
100
# Build, and install TensorFlow Serving
Original file line number Diff line number Diff line change @@ -123,11 +123,12 @@ def tf_serving_workspace():
123
123
124
124
# The Boost repo is organized into git sub-modules (see the list at
125
125
# https://github.com/boostorg/boost/tree/master/libs), which requires "new_git_repository".
126
- new_git_repository (
126
+ http_archive (
127
127
name = "org_boost" ,
128
- commit = "b7b1371294b4bdfc8d85e49236ebced114bc1d8f" , # boost-1.75.0
129
128
build_file = "//third_party/boost:BUILD" ,
130
- init_submodules = True ,
131
- recursive_init_submodules = True ,
132
- remote = "https://github.com/boostorg/boost" ,
129
+ sha256 = "aeb26f80e80945e82ee93e5939baebdca47b9dee80a07d3144be1e1a6a66dd6a" ,
130
+ strip_prefix = "boost_1_75_0" ,
131
+ urls = [
132
+ "https://archives.boost.io/release/1.75.0/source/boost_1_75_0.tar.gz" ,
133
+ ],
133
134
)
You can’t perform that action at this time.
0 commit comments