Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Explicitly disable SDL2 as it seems to have changed to default on #56

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 7 additions & 12 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,22 @@ RUN \
echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \
build-base \
bzip2-dev \
cmake \
curl-dev \
doxygen \
gettext-dev \
freetype-dev \
gettext \
gmp-dev \
hiredis-dev \
icu-dev \
leveldb-dev \
libjpeg-turbo-dev \
jpeg-dev \
jsoncpp-dev \
libogg-dev \
libpng-dev \
openssl-dev \
libtool \
libvorbis-dev \
libxi-dev \
luajit-dev \
mesa-dev \
ncurses-dev \
openal-soft-dev \
python3-dev \
sqlite-dev \
zlib-dev \
zstd-dev && \
echo "**** install runtime packages ****" && \
apk add --no-cache \
Expand Down Expand Up @@ -79,7 +73,8 @@ RUN \
tar xf /tmp/irrlicht.tar.gz -C \
/tmp/irrlicht --strip-components=1 && \
cd /tmp/irrlicht && \
cmake . && \
cmake . \
-DUSE_SDL2=0 && \
make -j 4 && \
make install && \
echo "**** compile minetestserver ****" && \
Expand Down
19 changes: 7 additions & 12 deletions Dockerfile.aarch64
Original file line number Diff line number Diff line change
Expand Up @@ -20,28 +20,22 @@ RUN \
echo "**** install build packages ****" && \
apk add --no-cache --virtual=build-dependencies \
build-base \
bzip2-dev \
cmake \
curl-dev \
doxygen \
gettext-dev \
freetype-dev \
gettext \
gmp-dev \
hiredis-dev \
icu-dev \
leveldb-dev \
libjpeg-turbo-dev \
jpeg-dev \
jsoncpp-dev \
libogg-dev \
libpng-dev \
openssl-dev \
libtool \
libvorbis-dev \
libxi-dev \
luajit-dev \
mesa-dev \
ncurses-dev \
openal-soft-dev \
python3-dev \
sqlite-dev \
zlib-dev \
zstd-dev && \
echo "**** install runtime packages ****" && \
apk add --no-cache \
Expand Down Expand Up @@ -79,7 +73,8 @@ RUN \
tar xf /tmp/irrlicht.tar.gz -C \
/tmp/irrlicht --strip-components=1 && \
cd /tmp/irrlicht && \
cmake . && \
cmake . \
-DUSE_SDL2=0 && \
make -j 4 && \
make install && \
echo "**** compile minetestserver ****" && \
Expand Down