Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions DockerfileNode20
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM cimg/android:2025.04.1-node
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.39.3/install.sh | bash
ENV NODE_VERSION 22.17.0
ENV NVM_DIR ~/.nvm/
ENV NODE_VERSION=24.15.0
ENV NVM_DIR=~/.nvm/

RUN sudo apt-get update && sudo apt-get install -y \
gradle gconf-service libasound2 libatk1.0-0 libc6 libcairo2 \
Expand All @@ -20,6 +20,10 @@ ENV JRE_HOME=${JDK_HOME}
# Updating default java version to be used
RUN sudo update-alternatives --set java /usr/lib/jvm/java-17-openjdk-amd64/bin/java

# Cordova requires the final Android 36.0.0 build-tools release. The base image
# only includes the 36.0.0-rc5 preview.
RUN sdkmanager --install "build-tools;36.0.0"

# Installing gradle
RUN curl -s "https://get.sdkman.io" | bash && \
source "/home/circleci/.sdkman/bin/sdkman-init.sh" && \
Expand Down