Better support for Docker

This commit is contained in:
pancake 2014-12-10 02:06:21 +01:00
parent ba382e9e7f
commit 4c00f83c7c
2 changed files with 66 additions and 37 deletions

66
doc/Dockerfile Normal file
View File

@ -0,0 +1,66 @@
#
# Windows and OSX users must use boot2docker
#
# $ boot2docker init
# $ boot2docker start
# (.. wait a bit ..)
# copy paste the environment variables
#
# For everyone:
#
# Build docker image with:
# $ docker build .
#
# Run the docker image:
# $ docker images
# $ export DOCKER_IMAGE_ID= docker images | awk '{print $3}'|head -n2 | tail -n1`
# $ docker -ti ${DOCKER_IMAGE_ID} bash
#
# Once you quit the bash session get the container id with:
# $ docker ps -a | grep bash
#
# To get into that shell again just type:
# $ docker start <containedid>
# $ docker attach <containedid>
#
# To share those images:
# $ docker export <containerid> | xz > container.xz
# $ xz -d < container.xz | docker import -
#
# using phusion/baseimage as base image.
FROM phusion/baseimage:0.9.9
# Set correct environment variables.
ENV HOME /root
# Regenerate SSH host keys. baseimage-docker does not contain any
RUN /etc/my_init.d/00_regen_ssh_host_keys.sh
# Use baseimage-docker's init system.
CMD ["/sbin/my_init"]
# create code directory
RUN mkdir -p /opt/code/
# install packages required to compile vala and radare2
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y software-properties-common python-all-dev wget
RUN apt-get install -y swig flex bison git gcc g++ make pkg-config glib-2.0
RUN apt-get install -y python-gobject-dev valgrind gdb
ENV VALA_TAR vala-0.26.1
# compile vala
RUN cd /opt/code && \
wget -c https://download.gnome.org/sources/vala/0.26/${VALA_TAR}.tar.xz && \
shasum ${VALA_TAR}.tar.xz | grep -q 0839891fa02ed2c96f0fa704ecff492ff9a9cd24 && \
tar -Jxf ${VALA_TAR}.tar.xz
RUN cd /opt/code/${VALA_TAR}; ./configure --prefix=/usr ; make && make install
# compile radare and bindings
RUN cd /opt/code; git clone https://github.com/radare/radare2.git; cd radare2; ./sys/all.sh
# Clean up APT when done.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
RUN r2 -V

View File

@ -1,37 +0,0 @@
#
# Build docker image with:
# $ docker build - < radare2.docker
#
# Run the docker image:
# $ docker <image_id> -t -i /bin/bash
#
# using phusion/baseimage as base image.
FROM phusion/baseimage:0.9.9
# Set correct environment variables.
ENV HOME /root
# Regenerate SSH host keys. baseimage-docker does not contain any
RUN /etc/my_init.d/00_regen_ssh_host_keys.sh
# Use baseimage-docker's init system.
CMD ["/sbin/my_init"]
# create code directory
RUN mkdir -p /opt/code/
# install packages required to compile vala and radare2
RUN apt-get update
RUN apt-get upgrade -y
RUN apt-get install -y software-properties-common python-all-dev wget
RUN apt-get install -y swig flex bison git gcc g++ make pkg-config glib-2.0
RUN apt-get install -y python-gobject-dev valgrind gdb
# compile vala
RUN cd /opt/code; wget http://download.gnome.org/sources/vala/0.26/vala-0.26.0.tar.xz; tar -Jxf vala-0.26.0.tar.xz
RUN cd /opt/code/vala-0.26.0; ./configure --prefix=/usr ; make && make install
# compile radare
RUN cd /opt/code; git clone https://github.com/radare/radare2.git; cd radare2; ./sys/all.sh
# Clean up APT when done.
RUN apt-get clean && rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*