File tree Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Expand file tree Collapse file tree 2 files changed +17
-0
lines changed Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ # Copyright (c) Meta Platforms, Inc. and affiliates.
3+ # All rights reserved.
4+ #
5+ # This source code is licensed under the BSD-style license found in the
6+ # LICENSE file in the root directory of this source tree.
7+
8+ set -ex
9+
10+ apt-get install -y --no-install-recommends \
11+ openjdk-17-jdk \
12+ ca-certificates-java \
13+ ant
Original file line number Diff line number Diff line change @@ -30,6 +30,10 @@ ARG BUCK2_VERSION
3030COPY ./common/install_buck.sh install_buck.sh
3131RUN bash ./install_buck.sh && rm install_buck.sh
3232
33+ # Install java
34+ COPY ./common/install_java.sh install_java.sh
35+ RUN bash ./install_java.sh && rm install_java.sh
36+
3337# Setup user
3438COPY ./common/install_user.sh install_user.sh
3539RUN bash ./install_user.sh && rm install_user.sh
You can’t perform that action at this time.
0 commit comments