Merge pull request #240 from joshuawarner32/docker

Add basic docker image / util script for building
This commit is contained in:
Joel Dice 2014-04-23 16:50:44 -06:00
commit 3fc5e54a54
2 changed files with 37 additions and 0 deletions

27
Dockerfile Normal file
View File

@ -0,0 +1,27 @@
FROM debian:jessie
MAINTAINER Joshua Warner, joshuawarner32@gmail.com
# Install base dependencies and build tools, general debugging tools
RUN apt-get update && \
apt-get install -y \
build-essential \
g++-4.8 \
zlib1g-dev \
openjdk-7-jdk \
locales \
--no-install-recommends && \
apt-get clean all
# Fix utf-8 default locale - we'd otherwise have trouble with the Strings and Misc tests
RUN dpkg-reconfigure locales && \
locale-gen C.UTF-8 && \
/usr/sbin/update-locale LANG=C.UTF-8
ENV LC_ALL C.UTF-8
# Set JAVA_HOME for avian's benefit
ENV JAVA_HOME /usr/lib/jvm/java-7-openjdk-amd64
# Avian build location
VOLUME /var/avian
WORKDIR /var/avian

10
docker-build.sh Executable file
View File

@ -0,0 +1,10 @@
#!/bin/sh
if test $# -eq 0; then
echo "Usage: $0 <command_to_run_in_docker>"
echo "Ex: $0 make test"
echo "Ex: $0 ./test/ci.sh"
exit 1
fi
docker run --rm -i -t -v $(cd $(dirname "$0") && pwd):/var/avian -u $(id -u "${USER}") joshuawarner32/avian-build "${@}"