mirror of
https://github.com/bgp/bgpq4
synced 2025-02-28 08:53:11 +00:00
install libtool
This commit is contained in:
2
.github/images/centos.Dockerfile
vendored
2
.github/images/centos.Dockerfile
vendored
@@ -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
|
||||
|
||||
5
.github/images/debian.Dockerfile
vendored
5
.github/images/debian.Dockerfile
vendored
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user