git repos / blockattack-game

source/misc/docker/Dockerfile.Ubuntu14.04build_Standalone32

browsing at commit = 030a39c4a48e831edd74ede8251d8a0c916386e2

branches: v2.3.X

tags: v2.3.0

raw · blame · history

FROM ioft/i386-ubuntu:14.04

RUN apt-get update && apt-get install -y build-essential libboost-dev cmake pkg-config libboost-program-options-dev libfreetype6-dev libvorbis-dev libgl1-mesa-dev libpulse-dev libutfcpp-dev zip gettext

COPY source/misc/standalone/compile_requirements.sh /
RUN /compile_requirements.sh

COPY . /staging/blockattack-game

ENV BLOCKATTACK_VERSION 2.3.0

RUN cd /staging/blockattack-game && \
./packdata.sh && \
cmake -D Boost_USE_STATIC_LIBS=ON -D INSTALL_DATA_DIR=. -D CMAKE_INSTALL_PREFIX=. -D STANDALONE=1 . && make