Skip to content

Commit

Permalink
Dockerfile: removed libtar from dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
proycon committed Dec 16, 2024
1 parent 678609e commit 56eae44
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ RUN if [ "$VERSION" = "distro" ]; then \
echo -e "----------------------------------------------------------\nNOTE: Installing latest release as provided by Alpine package manager.\nThis version may diverge from the one in the git master tree or even from the latest release on github!\nFor development, build with --build-arg VERSION=development.\n----------------------------------------------------------\n" &&\
apk update && apk add foliautils; \
else \
PACKAGES="libtar libbz2 icu-libs libxml2 libxslt libexttextcat libgomp libstdc++" &&\
BUILD_PACKAGES="build-base autoconf-archive autoconf automake libtool libtar-dev bzip2-dev icu-dev libxml2-dev libxslt-dev libexttextcat-dev git" &&\
PACKAGES="libbz2 icu-libs libxml2 libxslt libexttextcat libgomp libstdc++" &&\
BUILD_PACKAGES="build-base autoconf-archive autoconf automake libtool bzip2-dev icu-dev libxml2-dev libxslt-dev libexttextcat-dev git" &&\
apk add $PACKAGES $BUILD_PACKAGES &&\
cd /usr/src/ && ./foliautils/build-deps.sh &&\
cd foliautils && sh ./bootstrap.sh && ./configure && make && make install &&\
Expand Down

0 comments on commit 56eae44

Please sign in to comment.