install libtool

This commit is contained in:
Job Snijders
2021-08-17 14:36:30 +00:00
parent 08801e2068
commit 81112ec2de
2 changed files with 5 additions and 2 deletions

View File

@@ -4,7 +4,7 @@ FROM $image
# Install dependencies
RUN yum update -y
RUN yum groupinstall -y 'Development Tools'
RUN yum install -y autoconf automake findutils
RUN yum install -y autoconf automake findutils libtool
# Add source code
ADD . /src

View File

@@ -7,7 +7,10 @@ RUN apt-get update && apt-get install -y locales && rm -rf /var/lib/apt/lists/*
ENV LANG en_US.utf8
# Install dependencies
RUN apt-get update && apt-get dist-upgrade -y && apt-get install -y build-essential autoconf automake markdown && rm -rf /var/lib/apt/lists/*
RUN apt-get update \
&& apt-get dist-upgrade -y \
&& apt-get install -y build-essential autoconf libtool automake markdown \
&& rm -rf /var/lib/apt/lists/*
# Add source code
ADD . /src