File tree Expand file tree Collapse file tree 2 files changed +8
-6
lines changed
Expand file tree Collapse file tree 2 files changed +8
-6
lines changed Original file line number Diff line number Diff line change 11FROM ubuntu:22.04
2- RUN apt-get update && apt install -y build-essential clang git wget
3- RUN wget -O /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-amd64
4- RUN chmod +x /usr/local/bin/bazel
2+ RUN apt-get update \
3+ && apt install -y build-essential clang git wget \
4+ && wget -O /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-amd64 \
5+ && chmod +x /usr/local/bin/bazel
56COPY . /tmp
67WORKDIR /tmp
78RUN bazel build //test/e2e:e2e_consumer
Original file line number Diff line number Diff line change 11FROM ubuntu:22.04
2- RUN apt-get update && apt install -y build-essential clang git wget
3- RUN wget -O /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-amd64
4- RUN chmod +x /usr/local/bin/bazel
2+ RUN apt-get update \
3+ && apt install -y build-essential clang git wget \
4+ && wget -O /usr/local/bin/bazel https://github.com/bazelbuild/bazelisk/releases/latest/download/bazelisk-linux-amd64 \
5+ && chmod +x /usr/local/bin/bazel
56COPY . /tmp
67WORKDIR /tmp
78RUN bazel build //test/e2e:e2e_provider
You can’t perform that action at this time.
0 commit comments