Skip to content
This repository was archived by the owner on Dec 30, 2025. It is now read-only.

Commit 0b76b77

Browse files
committed
chore(Containerfile): remove specific version numbers from package installations
Removing specific version numbers from the package installations in the Containerfile allows for more flexibility and ensures that the latest compatible versions of the packages are installed. This change helps in maintaining the container with up-to-date security patches and improvements without manually updating the version numbers in the Containerfile.
1 parent ddc67b2 commit 0b76b77

File tree

1 file changed

+20
-20
lines changed

1 file changed

+20
-20
lines changed

Containerfile

Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -18,29 +18,29 @@ ENV DEBIAN_FRONTEND=noninteractive \
1818
RUN apt-get update && \
1919
apt-get upgrade -y && \
2020
apt-get install -y --no-install-recommends \
21-
build-essential=12.9 \
22-
gdb=13.1-3 \
23-
gettext=0.21-12 \
24-
libargon2-dev=0~20171227-0.3+deb12u1 \
25-
libc-ares-dev=1.18.1-3 \
26-
libcurl4-openssl-dev=7.88.1-10+deb12u12 \
27-
libpcre2-dev=10.42-1 \
28-
libssl-dev=3.0.17-1~deb12u2 \
29-
libsodium-dev=1.0.18-1 \
30-
pkg-config=1.8.1-1 \
31-
wget=1.21.3-1+deb12u1 \
32-
ca-certificates=20230311 \
33-
git=1:2.39.5-0+deb12u2 \
21+
build-essential \
22+
gdb \
23+
gettext \
24+
libargon2-dev \
25+
libc-ares-dev \
26+
libcurl4-openssl-dev \
27+
libpcre2-dev \
28+
libssl-dev \
29+
libsodium-dev \
30+
pkg-config \
31+
wget \
32+
ca-certificates \
33+
git \
3434
# Additional Atheme dependencies for better functionality
35-
libidn2-dev=2.3.3-1+b1 \
36-
nettle-dev=3.8.1-2 \
37-
libqrencode-dev=4.1.1-1 \
35+
libidn2-dev \
36+
nettle-dev \
37+
libqrencode-dev \
3838
# Development tools for better builds
39-
autoconf=2.71-3 \
40-
automake=1:1.16.5-1.3 \
41-
libtool=2.4.7-7~deb12u1 \
39+
autoconf \
40+
automake \
41+
libtool \
4242
# Perl development libraries for Atheme Perl support
43-
libperl-dev=5.36.0-7+deb12u2 && \
43+
libperl-dev && \
4444
apt-get clean && \
4545
rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* /tmp/* /var/tmp/*
4646

0 commit comments

Comments
 (0)