diff --git a/source/misc/docker/Dockerfile.Ubuntu14.04build b/source/misc/docker/Dockerfile.Ubuntu14.04build new file mode 100644 index 0000000..2d1fc1e --- /dev/null +++ b/source/misc/docker/Dockerfile.Ubuntu14.04build @@ -0,0 +1,14 @@ +FROM ubuntu:14.04 + +RUN apt-get update && apt-get install -y build-essential libphysfs-dev libboost-dev libjsoncpp-dev cmake libsdl2-dev libsdl2-image-dev libsdl2-mixer-dev libsdl2-ttf-dev libboost-program-options-dev libutfcpp-dev zip gettext + +RUN mkdir -p /staging/blockattack-game + +COPY . /staging/blockattack-game + +ENV BLOCKATTACK_VERSION 2.1.0-SNAPSHOT + +RUN cd /staging/blockattack-game && \ +./packdata.sh && \ +cmake . && \ +make