Skip to content

Commit b7491a0

Browse files
committed
repro: add automake as explicit dependency
noble builds were failing because of a missing aclocal usual recommendation is to install automake which apparently no longer is in the dependency graph for noble we add it to all ubuntu images in case it gets removed in jammy/resolute as well Changelog-None
1 parent d7b0f1f commit b7491a0

3 files changed

Lines changed: 35 additions & 32 deletions

File tree

contrib/reprobuild/Dockerfile.jammy

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -12,23 +12,24 @@ RUN sed -i '/updates/d' /etc/apt/sources.list && \
1212

1313
RUN apt-get update && \
1414
apt-get install -y --no-install-recommends \
15-
autoconf \
16-
build-essential \
17-
ca-certificates \
18-
file \
19-
gettext \
20-
git \
21-
libsqlite3-dev \
22-
libpq-dev \
23-
libsodium23 \
24-
libsodium-dev \
25-
libtool \
26-
m4 \
27-
sudo \
28-
unzip \
29-
wget \
30-
jq \
31-
zip \
15+
autoconf \
16+
automake \
17+
build-essential \
18+
ca-certificates \
19+
file \
20+
gettext \
21+
git \
22+
libsqlite3-dev \
23+
libpq-dev \
24+
libsodium23 \
25+
libsodium-dev \
26+
libtool \
27+
m4 \
28+
sudo \
29+
unzip \
30+
wget \
31+
jq \
32+
zip \
3233
&& cd /tmp \
3334
&& wget https://github.com/kristapsdz/lowdown/archive/refs/tags/VERSION_1_0_2.tar.gz \
3435
&& tar -xzf VERSION_1_0_2.tar.gz \

contrib/reprobuild/Dockerfile.noble

Lines changed: 16 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -12,26 +12,27 @@ RUN sed -i '/updates/d' /etc/apt/sources.list && \
1212
sed -i 's/^deb \(.*\) noble main$/deb \1 noble main universe/' /etc/apt/sources.list
1313

1414
RUN apt-get update \
15-
&& apt-get install -y --no-install-recommends \
16-
autoconf \
17-
build-essential \
18-
ca-certificates \
19-
file \
20-
gettext \
21-
git \
15+
&& apt-get install -y --no-install-recommends \
16+
autoconf \
17+
automake \
18+
build-essential \
19+
ca-certificates \
20+
file \
21+
gettext \
22+
git \
2223
curl \
2324
libsqlite3-dev \
24-
libpq-dev \
25-
libsodium23 \
25+
libpq-dev \
26+
libsodium23 \
2627
libsodium-dev \
2728
lowdown \
28-
libtool \
29-
m4 \
30-
sudo \
31-
unzip \
32-
wget \
29+
libtool \
30+
m4 \
31+
sudo \
32+
unzip \
33+
wget \
3334
jq \
34-
zip
35+
zip
3536

3637
# Configure /repo/.git as 'safe.directory'
3738
RUN git config --global --add safe.directory /repo/.git

contrib/reprobuild/Dockerfile.resolute

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ RUN sed -i '/updates/d' /etc/apt/sources.list && \
1414
RUN apt-get update \
1515
&& apt-get install -y --no-install-recommends \
1616
autoconf \
17+
automake \
1718
build-essential \
1819
ca-certificates \
1920
file \

0 commit comments

Comments
 (0)