1
0
mirror of https://github.com/stucki/docker-lineageos synced 2025-01-09 17:39:47 -05:00

add android completion

This commit is contained in:
Budleigh Salterton driving a Miura 2016-03-31 21:54:13 +02:00
parent ae71c4c41b
commit 029736b5e6
3 changed files with 6 additions and 1 deletions

View File

@ -6,6 +6,8 @@ This project adheres to [Semantic Versioning](http://semver.org/).
### Added ### Added
- Use -f to force rebuild the source. - Use -f to force rebuild the source.
- If build fails don't remove intermediate containers - If build fails don't remove intermediate containers
- Added bash completion, wget and nano
- Simplier home creation
## [0.5.0] - 2016-03-14 ## [0.5.0] - 2016-03-14
### Added ### Added

3
Dockerfile Normal file → Executable file
View File

@ -17,8 +17,9 @@ RUN apt-get install -y g++-multilib gcc-multilib lib32ncurses5-dev lib32readline
RUN apt-get install -y ccache rsync tig RUN apt-get install -y ccache rsync tig
RUN apt-get install -y android-tools-adb android-tools-fastboot RUN apt-get install -y android-tools-adb android-tools-fastboot
RUN apt-get install -y bc bsdmainutils file screen RUN apt-get install -y bc bsdmainutils file screen
RUN apt-get install -y bash-completion wget nano
RUN mkdir -p /home/cmbuild && useradd --no-create-home cmbuild && rsync -a /etc/skel/ /home/cmbuild/ RUN useradd cmbuild && rsync -a /etc/skel/ /home/cmbuild/
RUN mkdir /home/cmbuild/bin RUN mkdir /home/cmbuild/bin
RUN curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > /home/cmbuild/bin/repo RUN curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > /home/cmbuild/bin/repo

2
bash_completion Normal file
View File

@ -0,0 +1,2 @@
. android-completion/android
. android-completion/repo