Skip to content

Commit 56af037

Browse files
committed
Test build
1 parent 90ad4e8 commit 56af037

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

tensorflow_serving/tools/docker/Dockerfile.devel

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,7 @@ RUN mkdir /bazel && \
9494

9595
# Download TF Serving sources (optionally at specific commit).
9696
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 . .
9898

9999
FROM base_build as binary_build
100100
# Build, and install TensorFlow Serving

tensorflow_serving/workspace.bzl

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,11 +123,12 @@ def tf_serving_workspace():
123123

124124
# The Boost repo is organized into git sub-modules (see the list at
125125
# https://github.com/boostorg/boost/tree/master/libs), which requires "new_git_repository".
126-
new_git_repository(
126+
http_archive(
127127
name = "org_boost",
128-
commit = "b7b1371294b4bdfc8d85e49236ebced114bc1d8f", # boost-1.75.0
129128
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+
],
133134
)

0 commit comments

Comments
 (0)