This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM alpine:latest AS build | |
| ARG MC_TAG=4.8.33 | |
| # Install build tools + runtime libs (ensure .so files exist) | |
| RUN apk add --no-cache \ | |
| build-base wget tar ncurses-dev ncurses-terminfo-base pkgconf \ | |
| glib glib-dev pcre pcre2 pcre-dev libstdc++ \ | |
| slang slang-dev ncurses-libs \ | |
| gettext gettext-dev intltool m4 autoconf automake libtool \ |