Initial import of the radare2 Dockerfile

This commit is contained in:
pancake 2014-12-10 00:38:07 +01:00
parent 73eea88ad7
commit ab00f259d9

37
doc/radare2.docker Normal file
View File

@ -0,0 +1,37 @@
#
# 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/*