blob: 89c32b8e5630dcb981579966e7d04096d22cd55b [file] [log] [blame]
Geoffrey Martin-Noblec0745222022-11-08 17:52:49 -08001# Copyright 2022 The IREE Authors
2#
3# Licensed under the Apache License v2.0 with LLVM Exceptions.
4# See https://llvm.org/LICENSE.txt for license information.
5# SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6
7# When building, we make the entire repository the Docker build context so that
8# we can reuse scripts across the project, but we don't actually want to
9# transfer the entire directory (including any local files, submodules, etc) to
10# the Docker daemon. Instead we start out by ignoring everything and then add
11# back only the files we actually want to use in our Docker images.
12
13# Ignore everything
14**
15# A directory specifically for things used when building containers, but not
16# elsewhere.
17!build_tools/docker/context/**
18# Avoid duplicating dependency requirement information
19!runtime/bindings/python/iree/runtime/build_requirements.txt
Geoffrey Martin-Noble4fd7a1d2022-11-17 15:09:49 -080020!integrations/tensorflow/test/requirements.txt
Geoffrey Martin-Noble4fd7a1d2022-11-17 15:09:49 -080021# Keep the Bazel version in only one place
22!.bazelversion