diff options
Diffstat (limited to 'ICU/73.2/Dockerfile')
| -rw-r--r-- | ICU/73.2/Dockerfile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/ICU/73.2/Dockerfile b/ICU/73.2/Dockerfile new file mode 100644 index 0000000..1cf0714 --- /dev/null +++ b/ICU/73.2/Dockerfile @@ -0,0 +1,18 @@ +FROM alpine +RUN apk update && apk add \ + make \ + gcc \ + g++ \ + musl-dev \ + wget +RUN wget https://github.com/unicode-org/icu/releases/download/release-73-2/icu4c-73_2-src.tgz +RUN tar -xf icu4c-73_2-src.tgz +WORKDIR /icu/source +ARG PREFIX=/opt/spm/libicu-73.2 +RUN ./configure \ + --prefix=$PREFIX \ + --enable-static \ + --disable-shared \ + CFLAGS='-ffunction-sections -fdata-sections -Os' +RUN make -j$(nproc --all) +RUN make install |
