This is an automated email from the ASF dual-hosted git repository. lfrolov pushed a commit to branch DATALAB-2409 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 1cd62c86bfbf0bdb0394fbc8c24f7e125feedac2 Author: leonidfrolov <[email protected]> AuthorDate: Tue Oct 12 15:23:07 2021 +0300 [DATALAB-2409]: added logger in azure and gcp base dockerfiles --- infrastructure-provisioning/src/general/files/azure/base_Dockerfile | 1 + infrastructure-provisioning/src/general/files/gcp/base_Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/infrastructure-provisioning/src/general/files/azure/base_Dockerfile b/infrastructure-provisioning/src/general/files/azure/base_Dockerfile index 2070c05..3216274 100644 --- a/infrastructure-provisioning/src/general/files/azure/base_Dockerfile +++ b/infrastructure-provisioning/src/general/files/azure/base_Dockerfile @@ -68,6 +68,7 @@ COPY ${SRC_PATH}general/scripts/azure/common_* /root/scripts/ COPY ${SRC_PATH}general/lib/azure/* /usr/lib/python3.8/datalab/ COPY ${SRC_PATH}general/lib/os/${OS}/common_lib.py /usr/lib/python3.8/datalab/common_lib.py COPY ${SRC_PATH}general/lib/os/fab.py /usr/lib/python3.8/datalab/fab.py +COPY ${SRC_PATH}general/lib/os/logger.py /usr/lib/python3.8/datalab/logger.py COPY ${SRC_PATH}general/files/os/ivysettings.xml /root/templates/ COPY ${SRC_PATH}general/files/os/local_endpoint.json /root/files/ COPY ${SRC_PATH}project/templates/locations/ /root/locations/ diff --git a/infrastructure-provisioning/src/general/files/gcp/base_Dockerfile b/infrastructure-provisioning/src/general/files/gcp/base_Dockerfile index bb4a81c..cedb930 100644 --- a/infrastructure-provisioning/src/general/files/gcp/base_Dockerfile +++ b/infrastructure-provisioning/src/general/files/gcp/base_Dockerfile @@ -79,6 +79,7 @@ COPY ${SRC_PATH}general/scripts/gcp/common_* /root/scripts/ COPY ${SRC_PATH}general/lib/gcp/* /usr/lib/python3.8/datalab/ COPY ${SRC_PATH}general/lib/os/${OS}/common_lib.py /usr/lib/python3.8/datalab/common_lib.py COPY ${SRC_PATH}general/lib/os/fab.py /usr/lib/python3.8/datalab/fab.py +COPY ${SRC_PATH}general/lib/os/logger.py /usr/lib/python3.8/datalab/logger.py COPY ${SRC_PATH}general/files/os/ivysettings.xml /root/templates/ COPY ${SRC_PATH}general/files/os/local_endpoint.json /root/files/ COPY ${SRC_PATH}project/templates/locations/ /root/locations/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
