Skip to content

Commit

Permalink
fix: use irrlicht fork instead of the standard library
Browse files Browse the repository at this point in the history
  • Loading branch information
nerzhul committed Apr 2, 2021
1 parent c4b048f commit 78da79b
Showing 1 changed file with 11 additions and 2 deletions.
13 changes: 11 additions & 2 deletions Dockerfile
@@ -1,6 +1,7 @@
FROM alpine:3.11
FROM alpine:3.13

ENV MINETEST_GAME_VERSION master
ENV IRRLICHT_VERSION master

COPY .git /usr/src/minetest/.git
COPY CMakeLists.txt /usr/src/minetest/CMakeLists.txt
Expand All @@ -18,7 +19,7 @@ COPY textures /usr/src/minetest/textures

WORKDIR /usr/src/minetest

RUN apk add --no-cache git build-base irrlicht-dev cmake bzip2-dev libpng-dev \
RUN apk add --no-cache git build-base cmake bzip2-dev libpng-dev \
jpeg-dev libxxf86vm-dev mesa-dev sqlite-dev libogg-dev \
libvorbis-dev openal-soft-dev curl-dev freetype-dev zlib-dev \
gmp-dev jsoncpp-dev postgresql-dev luajit-dev ca-certificates && \
Expand All @@ -36,6 +37,14 @@ RUN git clone --recursive https://github.com/jupp0r/prometheus-cpp/ && \
make -j2 && \
make install

RUN git clone --depth=1 https://github.com/minetest/irrlicht/ -b ${IRRLICHT_VERSION} && \
mkdir irrlicht/build && \
cd irrlicht/build && \
cmake .. \
-DCMAKE_BUILD_TYPE=Release && \
make -j2 && \
make install

WORKDIR /usr/src/minetest
RUN mkdir build && \
cd build && \
Expand Down

0 comments on commit 78da79b

Please sign in to comment.