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

Commit ddc67b2

Browse files
committed
chore(Containerfile): remove specific version constraints for system dependencies
Remove version constraints for system dependencies in the Containerfile to simplify maintenance and ensure compatibility with the latest security updates. This change allows the container to always use the most recent versions of the packages, reducing the risk of vulnerabilities and improving the overall security posture of the application.
1 parent f19eeec commit ddc67b2

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

web/webpanel/Containerfile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ ENV DEBIAN_FRONTEND=noninteractive \
1717

1818
# Install system dependencies
1919
RUN apt-get update && \
20-
apt-get install -y --no-install-recommends --allow-downgrades \
21-
git=1:2.39.5-0+deb12u2 \
22-
unzip=6.0-28 \
23-
libzip-dev=1.7.3-1+b1 \
24-
libssl-dev=3.0.17-1~deb12u2 \
25-
ca-certificates=20230311 \
26-
nginx=1.22.1-9+deb12u2 && \
20+
apt-get install -y --no-install-recommends \
21+
git \
22+
unzip \
23+
libzip-dev \
24+
libssl-dev \
25+
ca-certificates \
26+
nginx && \
2727
apt-get clean && \
2828
rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/* /tmp/* /var/tmp/*
2929

0 commit comments

Comments
 (0)