Skip to content

Instantly share code, notes, and snippets.

@gipi
Last active December 25, 2015 23:59
Show Gist options
  • Save gipi/7061138 to your computer and use it in GitHub Desktop.
Save gipi/7061138 to your computer and use it in GitHub Desktop.
#docker
sudo docker history 4ac367d7de27
IMAGE               CREATED             CREATED BY                                      SIZE
4ac367d7de27        5 months ago        /bin/sh -c #(nop) CMD [-D]                      0 B
0c5139bbc002        5 months ago        /bin/sh -c #(nop) ENTRYPOINT [/usr/sbin/sshd]   0 B
61ad8a4bf0c9        5 months ago        /bin/sh -c #(nop) EXPOSE map[22/tcp:{}]         0 B
afabbd8c9179        5 months ago        /bin/sh -c apt-get update &&  apt-get install   27.18 MB
9007a7d2fed0        5 months ago        /bin/sh -c echo "root:root" | chpasswd &&  mk   601 B
d3324a52f520        5 months ago        /bin/sh -c #(nop) ENV DEBIAN_FRONTEND=noninte   0 B
94f49c0773fc        5 months ago        /bin/sh -c #(nop) MAINTAINER Carl X. Su <bcbc   0 B
e565fbbc6033        6 months ago        /bin/sh -c #(nop) CMD [/bin/bash]               0 B
405cce5cd17d        6 months ago        /bin/sh -c #(nop) ADD file:9123ed8a6f11e9768d   115 MB
511136ea3c5a        17 months ago                                                       0 B
FROM ubuntu:12.04
MAINTAINER Gianluca Pacchiella
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y python git gnupg flex bison build-essential zip curl
#RUN apt-get install gcc g++ git gnupg flex bison gperf build-essential \
zip curl libc6-dev libncurses5-dev:i386 x11proto-core-dev \
libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-glx:i386 \
libgl1-mesa-dev g++-multilib tofrodos \
libxml2-utils xsltproc zlib1g-dev:i386
RUN curl http://commondatastorage.googleapis.com/git-repo-downloads/repo > /bin/repo && chmod a+x /bin/repo
RUN mkdir aosp && cd aosp && repo init -u https://android.googlesource.com/platform/manifest
# here we synch the repo
RUN cd aosp && repo sync -j1
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment