File tree Expand file tree Collapse file tree 1 file changed +4
-3
lines changed
Expand file tree Collapse file tree 1 file changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -9,10 +9,11 @@ ARG YARN_VERSION
99# Prevent interactive prompts during package installation
1010ENV DEBIAN_FRONTEND=noninteractive
1111
12- # Install zstd (required by actions/cache for compression) and Node.js + Yarn
13- # at the versions pinned in the repo's package.json.
12+ # Install zstd (required by actions/cache for compression), a JRE for Firebase
13+ # emulators (Firestore, etc. spawn `java -version`), and Node.js + Yarn at the
14+ # versions pinned in the repo's package.json.
1415RUN sudo apt-get update && \
15- sudo apt-get install -y --no-install-recommends zstd && \
16+ sudo apt-get install -y --no-install-recommends zstd openjdk-17-jre-headless && \
1617 sudo rm -rf /var/lib/apt/lists/*
1718RUN sudo curl -fsSL https://deb.nodesource.com/setup_${NODE_VERSION%%.*}.x | sudo bash - && \
1819 sudo apt-get install -y --no-install-recommends nodejs && \
You can’t perform that action at this time.
0 commit comments