Skip to content

Commit fb6ad89

Browse files
committed
update: Added icu config needed
1 parent 6fba8c8 commit fb6ad89

File tree

2 files changed

+13
-0
lines changed

2 files changed

+13
-0
lines changed

Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ FROM debian:bullseye
33
RUN apt update && apt install -y build-essential git pkg-config automake autoconf libtool libfuse-dev fuse uuid-dev libxml2-dev libsnmp-dev libicu-dev icu-devtools
44

55
COPY entrypoint.sh /entrypoint.sh
6+
COPY icu-config /usr/bin/icu-config
67

78
ENTRYPOINT ["/entrypoint.sh"]

icu-config

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
#!/bin/sh
2+
3+
opts=$1
4+
5+
case $opts in
6+
'--cppflags')
7+
echo '' ;;
8+
'--ldflags')
9+
echo '-licuuc -licudata' ;;
10+
*)
11+
echo '/usr/lib/x86_64-linux-gnu/icu/pkgdata.inc' ;;
12+
esac

0 commit comments

Comments
 (0)