rebasing to Alpine 3.9 and removing broken internationalization from the build flags

This commit is contained in:
thelamer 2019-03-04 19:08:03 -08:00
parent 81752dca7a
commit ed8f4e648e
5 changed files with 11 additions and 3 deletions

View File

@ -1,4 +1,4 @@
FROM lsiobase/alpine:3.8 FROM lsiobase/alpine:3.9
# set version label # set version label
ARG BUILD_DATE ARG BUILD_DATE
@ -89,6 +89,8 @@ RUN \
-DCUSTOM_DOCDIR="/usr/share/doc/minetest" \ -DCUSTOM_DOCDIR="/usr/share/doc/minetest" \
-DCUSTOM_SHAREDIR="/usr/share/minetest" \ -DCUSTOM_SHAREDIR="/usr/share/minetest" \
-DENABLE_CURL=1 \ -DENABLE_CURL=1 \
-DENABLE_FREETYPE=1 \
-DENABLE_GETTEXT=0 \
-DENABLE_LEVELDB=1 \ -DENABLE_LEVELDB=1 \
-DENABLE_LUAJIT=1 \ -DENABLE_LUAJIT=1 \
-DENABLE_REDIS=1 \ -DENABLE_REDIS=1 \

View File

@ -1,4 +1,4 @@
FROM lsiobase/alpine.arm64:3.8 FROM lsiobase/alpine.arm64:3.9
# Add qemu to build on x86_64 systems # Add qemu to build on x86_64 systems
COPY qemu-aarch64-static /usr/bin COPY qemu-aarch64-static /usr/bin
@ -92,6 +92,8 @@ RUN \
-DCUSTOM_DOCDIR="/usr/share/doc/minetest" \ -DCUSTOM_DOCDIR="/usr/share/doc/minetest" \
-DCUSTOM_SHAREDIR="/usr/share/minetest" \ -DCUSTOM_SHAREDIR="/usr/share/minetest" \
-DENABLE_CURL=1 \ -DENABLE_CURL=1 \
-DENABLE_FREETYPE=1 \
-DENABLE_GETTEXT=0 \
-DENABLE_LEVELDB=1 \ -DENABLE_LEVELDB=1 \
-DENABLE_LUAJIT=1 \ -DENABLE_LUAJIT=1 \
-DENABLE_REDIS=1 \ -DENABLE_REDIS=1 \

View File

@ -1,4 +1,4 @@
FROM lsiobase/alpine.armhf:3.8 FROM lsiobase/alpine.armhf:3.9
# Add qemu to build on x86_64 systems # Add qemu to build on x86_64 systems
COPY qemu-arm-static /usr/bin COPY qemu-arm-static /usr/bin
@ -92,6 +92,8 @@ RUN \
-DCUSTOM_DOCDIR="/usr/share/doc/minetest" \ -DCUSTOM_DOCDIR="/usr/share/doc/minetest" \
-DCUSTOM_SHAREDIR="/usr/share/minetest" \ -DCUSTOM_SHAREDIR="/usr/share/minetest" \
-DENABLE_CURL=1 \ -DENABLE_CURL=1 \
-DENABLE_FREETYPE=1 \
-DENABLE_GETTEXT=0 \
-DENABLE_LEVELDB=1 \ -DENABLE_LEVELDB=1 \
-DENABLE_LUAJIT=1 \ -DENABLE_LUAJIT=1 \
-DENABLE_REDIS=1 \ -DENABLE_REDIS=1 \

View File

@ -161,6 +161,7 @@ Below are the instructions for updating containers:
## Versions ## Versions
* **04.03.19:** - Rebase to alpine 3.9 to compile 5.0.0 minetest with new build args.
* **14.01.19:** - Add pipeline logic and multi arch. * **14.01.19:** - Add pipeline logic and multi arch.
* **08.08.18:** - Rebase to alpine 3.8, build from latest release tag instead of master. * **08.08.18:** - Rebase to alpine 3.8, build from latest release tag instead of master.
* **03.01.18:** - Deprecate cpu_core routine lack of scaling. * **03.01.18:** - Deprecate cpu_core routine lack of scaling.

View File

@ -51,6 +51,7 @@ app_setup_block: |
https://hub.docker.com/r/linuxserver/{{ project_name }}/tags https://hub.docker.com/r/linuxserver/{{ project_name }}/tags
# changelog # changelog
changelogs: changelogs:
- { date: "04.03.19:", desc: "Rebase to alpine 3.9 to compile 5.0.0 minetest with new build args." }
- { date: "14.01.19:", desc: "Add pipeline logic and multi arch." } - { date: "14.01.19:", desc: "Add pipeline logic and multi arch." }
- { date: "08.08.18:", desc: "Rebase to alpine 3.8, build from latest release tag instead of master." } - { date: "08.08.18:", desc: "Rebase to alpine 3.8, build from latest release tag instead of master." }
- { date: "03.01.18:", desc: "Deprecate cpu_core routine lack of scaling." } - { date: "03.01.18:", desc: "Deprecate cpu_core routine lack of scaling." }