Update Dockerfile.alpine-dev (#1803)

Add missing icu dependency

Signed-off-by: Vladislav <vlad@dragonflydb.io>
This commit is contained in:
Vladislav 2023-09-05 11:44:11 +03:00 committed by GitHub
parent 87a47564ea
commit 05f4895d48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,7 @@ FROM alpine:3 as builder
# "openssl-libs-static" fixes "Could NOT find OpenSSL, try to set the path to OpenSSL root folder in the"
RUN apk add autoconf-archive automake bash bison boost-dev cmake coreutils \
curl ccache git gcc gdb g++ libunwind-dev libtool libxml2-dev make ninja \
openssl-dev openssl-libs-static patch zip zstd-dev
openssl-dev openssl-libs-static patch zip zstd-dev icu-dev
# This is required to make static linking work
RUN ls -1 /usr/lib/libboost_*.so | while read -r _file; do ln -sfv ${_file} ${_file//.so/.a}; done