extra/docker/Dockerfile.Ubuntu18.04build_Standalone
browsing at commit = c26b24f34d1145650b0495c4cba4de9c05224dfa
FROM ubuntu:18.04
ENV TZ=UTC
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
RUN apt-get update && apt-get install -y build-essential cmake pkg-config libfreetype6-dev libvorbis-dev libgl1-mesa-dev libpulse-dev libpng-dev zip gettext xorg-dev
COPY extra/standalone/compile_requirements.sh /
RUN /compile_requirements.sh
COPY . /staging/saland-game
ENV SALAND_VERSION UNKNOWN
RUN cd /staging/saland-game && \
./packdata.sh && \
cmake -D Boost_USE_STATIC_LIBS=ON -D INSTALL_DATA_DIR=. -D CMAKE_INSTALL_PREFIX=. -D STANDALONE=1 . && make