git repos / blockattack-game

source/misc/docker/Dockerfile.Fedora29build

browsing at commit = f5353039ca354079e4103a52ba7e9cea95b3a4ef

raw · blame · history

FROM fedora:29

RUN dnf -y install cmake \
make \
gcc-c++ \
SDL2-devel \
boost-devel \
fmt-devel \
physfs-devel \
SDL2_image-devel SDL2_ttf-devel SDL2_mixer-devel \
findutils \
gettext \
zip \
&& dnf -y clean all

COPY . /staging/blockattack-game

ENV BLOCKATTACK_VERSION 2.10.0-SNAPSHOT

RUN cd /staging/blockattack-game && \
./packdata.sh && \
cmake . && \
make