]> git.lizzy.rs Git - dragonfireclient.git/commitdiff
fix(docker): reduce the number of required libraries on build
authorLoic Blot <loic.blot@unix-experience.fr>
Fri, 2 Apr 2021 10:25:52 +0000 (12:25 +0200)
committerLoïc Blot <nerzhul@users.noreply.github.com>
Fri, 2 Apr 2021 12:40:22 +0000 (14:40 +0200)
Dockerfile

index e9a008bbf4a570521757c8d4c65fa7dc5debc35d..7cb6bec846015f70d59289edbd4895f62d4c6cdc 100644 (file)
@@ -19,9 +19,7 @@ COPY textures /usr/src/minetest/textures
 
 WORKDIR /usr/src/minetest
 
-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 \
+RUN apk add --no-cache git build-base cmake sqlite-dev curl-dev zlib-dev \
                gmp-dev jsoncpp-dev postgresql-dev luajit-dev ca-certificates && \
        git clone --depth=1 -b ${MINETEST_GAME_VERSION} https://github.com/minetest/minetest_game.git ./games/minetest_game && \
        rm -fr ./games/minetest_game/.git
@@ -38,12 +36,7 @@ RUN git clone --recursive https://github.com/jupp0r/prometheus-cpp/ && \
        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
+       cp -r irrlicht/include /usr/include/irrlichtmt
 
 WORKDIR /usr/src/minetest
 RUN mkdir build && \