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.8
IMAGE_VERSION=1.21.9
NDK_VERSION=27.2.12479018
BAZELISK_VERSION=v1.26.0
2 changes: 1 addition & 1 deletion android_dev/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ LABEL version="${IMAGE_VERSION}-${GEMINI_CLI_VERSION}"
LABEL maintainer="menny@evendanan.net"

# Install nodejs and pnpm. Taken from https://nodejs.org/en/download/current
ENV NVM_DIR /opt/nvm
ENV NVM_DIR=/opt/nvm
RUN mkdir -p ${NVM_DIR}
# Download and install nvm
RUN curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.40.3/install.sh | bash
Expand Down
28 changes: 28 additions & 0 deletions android_dev/docker-compose.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
version: '3.8'
services:
android-dev-box:
image: menny/android_dev:latest
restart: 'no'
tty: true
stdin_open: true
environment:
- GIT_REPO=AnySoftKeyboard/AnySoftKeyboard
- GIT_BRANCH=main
- GIT_PROVIDER=github.com
- ACTUAL_USER=menny
- ACTUAL_PASSWORD=blahblah
volumes:
- /home/menny/.ssh:/root/.ssh:ro
- /home/menny/.ssh:/home/menny/.ssh_original:ro
- /home/menny/.gnupg:/home/menny/.gnupg_original:ro
- /home/menny/.gitconfig:/home/menny/.gitconfig_original:ro
- /home/menny/.gemini:/home/menny/.gemini_original:ro
- /home/menny/.filebrowser/srv/dev_box:/home/menny/shared_srv
- /etc/ssh/ssh_host_rsa_key:/etc/ssh/ssh_host_rsa_key:ro
- /etc/ssh/ssh_host_rsa_key.pub:/etc/ssh/ssh_host_rsa_key.pub:ro
- /etc/ssh/ssh_host_ecdsa_key:/etc/ssh/ssh_host_ecdsa_key:ro
- /etc/ssh/ssh_host_ecdsa_key.pub:/etc/ssh/ssh_host_ecdsa_key.pub:ro
- /etc/ssh/ssh_host_ed25519_key:/etc/ssh/ssh_host_ed25519_key:ro
- /etc/ssh/ssh_host_ed25519_key.pub:/etc/ssh/ssh_host_ed25519_key.pub:ro
ports:
- 2201:22
2 changes: 1 addition & 1 deletion local_build.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
#!/bin/bash

set -e

# Source the versions.env file to get default values
source .github/versions.env
echo "Will use args: IMAGE_VERSION=${IMAGE_VERSION}, NDK_VERSION=${NDK_VERSION}, BAZELISK_VERSION=${BAZELISK_VERSION}"

function build_image() {
local image_name="$1"
Expand Down