File tree Expand file tree Collapse file tree 4 files changed +1
-302
lines changed Expand file tree Collapse file tree 4 files changed +1
-302
lines changed Original file line number Diff line number Diff line change @@ -52,14 +52,5 @@ RUN patch /opt/venv/lib/python3.6/site-packages/googleapiclient/http.py \
52
52
patch /opt/venv/lib/python3.6/site-packages/apitools/base/py/base_api.py \
53
53
/tfx-src/tfx/tools/docker/patches/base_api.patch
54
54
55
- # TODO(zhitaoli): Ensure that license dependency is an exact match instead of
56
- # subset check.
57
- ARG gather_third_party_licenses=true
58
- RUN if [ "${gather_third_party_licenses}" = "true" ]; then \
59
- /tfx-src/tfx/tools/docker/license.sh \
60
- /tfx-src/tfx/tools/docker/third_party_licenses.csv \
61
- /third_party/licenses; \
62
- fi
63
-
64
55
# TODO(b/139532550): Consolidate container entrypoint with Kubeflow runner.
65
56
ENTRYPOINT ["python3.6" , "/tfx-src/tfx/scripts/run_executor.py" ]
Original file line number Diff line number Diff line change @@ -19,7 +19,6 @@ set -u -x
19
19
DOCKER_IMAGE_REPO=${DOCKER_IMAGE_REPO:- " tensorflow/tfx" }
20
20
DOCKER_IMAGE_TAG=${DOCKER_IMAGE_TAG:- " latest" }
21
21
DOCKER_FILE=${DOCKER_FILE:- " Dockerfile" }
22
- GATHER_THIRD_PARTY_LICENSES=${GATHER_THIRD_PARTY_LICENSES:- " true" }
23
22
24
23
# Run docker build command.
25
- docker build -t ${DOCKER_IMAGE_REPO} :${DOCKER_IMAGE_TAG} -f tfx/tools/docker/${DOCKER_FILE} . --build-arg gather_third_party_licenses= ${GATHER_THIRD_PARTY_LICENSES} " $@ "
24
+ docker build -t ${DOCKER_IMAGE_REPO} :${DOCKER_IMAGE_TAG} -f tfx/tools/docker/${DOCKER_FILE} . " $@ "
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments