diff options
author | Adin Scannell <ascannell@google.com> | 2020-07-23 18:00:12 -0700 |
---|---|---|
committer | Adin Scannell <ascannell@google.com> | 2020-07-23 18:00:12 -0700 |
commit | ab0262bd94c25bc91d5e0d831b75729c253dfde6 (patch) | |
tree | a4a75c66b92b136ed1e250b4b9641a15808bf123 /images | |
parent | 14839e027f5310346718aea385cea5e45f017170 (diff) |
Convert go_generics tests to starlark.
For some reason these tests were broken when run via the bazel docker
container. The mechanism used was a bit crazy (self-extracting bundle),
so convert them to use straight-forward starlark rules. This has the
added advantaged that they are now independent tests.
Diffstat (limited to 'images')
-rw-r--r-- | images/default/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/images/default/Dockerfile b/images/default/Dockerfile index 397082b02..2b38e6c58 100644 --- a/images/default/Dockerfile +++ b/images/default/Dockerfile @@ -1,7 +1,7 @@ FROM fedora:31 # Install bazel. RUN dnf install -y dnf-plugins-core && dnf copr enable -y vbatts/bazel -RUN dnf install -y git gcc make golang gcc-c++ glibc-devel python3 which python3-pip python3-devel libffi-devel openssl-devel pkg-config glibc-static libstdc++-static patch +RUN dnf install -y git gcc make golang gcc-c++ glibc-devel python3 which python3-pip python3-devel libffi-devel openssl-devel pkg-config glibc-static libstdc++-static patch diffutils RUN pip install pycparser RUN dnf install -y bazel3 # Install gcloud. |