Skip to content
Merged
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion .github/versions.env
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
IMAGE_VERSION=1.21.5
IMAGE_VERSION=1.21.6
NDK_VERSION=27.2.12479018
BAZELISK_VERSION=v1.26.0
5 changes: 3 additions & 2 deletions android_dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ RUN . "$NVM_DIR/nvm.sh" && pnpm add -g @google/gemini-cli@${GEMINI_CLI_VERSION}
# Install dependencies
RUN apt update \
&& apt install -y --allow-remove-essential --allow-change-held-packages \
zsh openssh-server \
zsh openssh-server tmux \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/*

Expand All @@ -67,7 +67,8 @@ RUN RUNZSH=no sh -c "$(curl -fsSL https://raw.githubusercontent.com/ohmyzsh/ohmy
RUN echo "export NVM_DIR=${NVM_DIR}" >> /home/${ACTUAL_USER}/.zshrc && \
echo "export PNPM_HOME=${PNPM_HOME}" >> /home/${ACTUAL_USER}/.zshrc && \
echo "export PATH=${PATH}" >> /home/${ACTUAL_USER}/.zshrc && \
echo "source ${NVM_DIR}/nvm.sh" >> /home/${ACTUAL_USER}/.zshrc
echo "source ${NVM_DIR}/nvm.sh" >> /home/${ACTUAL_USER}/.zshrc && \
echo "tmux attach-session -t dev-session 2>/dev/null || tmux new-session -s dev-session" >> /home/${ACTUAL_USER}/.zshrc

# Switch back to root for remaining setup
USER root
Expand Down