blob: df812e6efe6b636386a4ac633a657a97bfd110b8 [file] [log] [blame]
# Copyright 2017 The Bazel Authors. All rights reserved.
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
# This BUILD file is used for installing clang.tar.gz into /usr/local
# of debian8-clang-fully-loaded container. The clang.tar.gz file was
# downloaded by gsutil_cp rule in the WORKSPACE file, and contains
# the same compiled clang binary as in
# https://console.cloud.google.com/launcher/details/google/clang-debian8
licenses(["notice"]) # Apache 2.0
package(default_visibility = ["//visibility:public"])
load("@bazel_tools//tools/build_defs/pkg:pkg.bzl", "pkg_tar")
load("//skylib:container_file_export.bzl", "container_file_export")
pkg_tar(
name = "tar",
srcs = glob(["**/*"]),
package_dir = "/",
strip_prefix = ".",
tags = ["manual"],
deps = [":python3"],
)
# Get python3 interpreter from the latest l.gcr.io/google/python container
# https://github.com/GoogleCloudPlatform/python-runtime/tree/master/python-interpreter-builder
container_file_export(
name = "python3",
image = "l.gcr.io/google/python@sha256:8c6f86e4cec33f483aaf4155658da424fe37d3e03d3c55a823790eb56a3a8f1a",
src_path = "/opt/python3.6",
tags = ["manual"],
)