-
Notifications
You must be signed in to change notification settings - Fork 170
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into kangda-workspace
- Loading branch information
Showing
45 changed files
with
294 additions
and
296 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,7 @@ | |
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
FROM debian:buster | ||
FROM debian:bullseye | ||
LABEL maintainer="[email protected]" | ||
|
||
# add env we can debug with the image name:tag | ||
|
@@ -22,13 +22,13 @@ ENV IMAGE=${IMAGE_ARG} | |
|
||
RUN apt-get update -y | ||
RUN apt-get -y install \ | ||
wget make cmake python3 python3-pip pkg-config coreutils \ | ||
wget make cmake python3 python3-pip python3-venv pkg-config coreutils \ | ||
zlib1g-dev curl libtool automake zip time rsync ninja-build \ | ||
git bash-completion jq default-jdk python3-distutils libicu-dev libbrotli-dev | ||
|
||
|
||
# install nodejs, which is needed for integration tests | ||
RUN sh -c 'curl -sL https://deb.nodesource.com/setup_12.x | bash -' | ||
RUN sh -c 'curl -sL https://deb.nodesource.com/setup_20.x | bash -' | ||
RUN apt-get install -y nodejs | ||
|
||
# install Bazelisk | ||
|
@@ -38,7 +38,7 @@ RUN wget -O /usr/local/bin/bazelisk https://github.com/bazelbuild/bazelisk/relea | |
# install clang-14 and associated tools (new envoy) | ||
# see https://apt.llvm.org/ for exhaustive list of all llvm related packages | ||
RUN wget -O- https://apt.llvm.org/llvm-snapshot.gpg.key| apt-key add - && \ | ||
echo "deb https://apt.llvm.org/buster/ llvm-toolchain-buster-14 main" >> /etc/apt/sources.list && \ | ||
echo "deb https://apt.llvm.org/bullseye/ llvm-toolchain-bullseye-14 main" >> /etc/apt/sources.list && \ | ||
apt-get update && \ | ||
apt-get install -y llvm-14 llvm-14-dev libclang-14-dev clang-14 \ | ||
lld-14 clang-tools-14 clang-format-14 libc++-dev xz-utils libclang-rt-14-dev | ||
|
@@ -59,6 +59,11 @@ RUN wget -q "https://go.dev/dl/${GO_TARBALL}" && \ | |
# Install buildifier | ||
RUN go install github.com/bazelbuild/buildtools/buildifier@latest | ||
|
||
RUN pip install pipx | ||
|
||
# Install beautysh | ||
RUN pipx install beautysh | ||
|
||
# install gcloud package | ||
RUN curl https://dl.google.com/dl/cloudsdk/release/google-cloud-sdk.tar.gz > /tmp/google-cloud-sdk.tar.gz | ||
RUN mkdir -p /usr/local/gcloud \ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.