mirror of
https://git.vectorsigma.ru/public/atlantis.git
synced 2026-07-28 23:08:26 +00:00
fix: debian version pinning (#3528)
* fix debian version pinning * unpin packages --------- Co-authored-by: PePe Amengual <jose.amengual@gmail.com>
This commit is contained in:
22
Dockerfile
22
Dockerfile
@@ -37,20 +37,18 @@ FROM debian:${DEBIAN_TAG} as debian-base
|
||||
# We place this last as it will bust less docker layer caches when packages update
|
||||
# hadolint ignore explanation
|
||||
# DL3008 (pin versions using "=") - Ignored to avoid failing the build
|
||||
# SC2261 (multiple redirections) - This is a bug https://github.com/hadolint/hadolint/issues/782
|
||||
# hadolint ignore=DL3008,SC2261
|
||||
# hadolint ignore=DL3008
|
||||
RUN apt-get update && \
|
||||
apt-get install -y --no-install-recommends \
|
||||
ca-certificates>=20210119 \
|
||||
curl>=7.74 \
|
||||
git>=1:2.30 \
|
||||
unzip>=6.0 \
|
||||
bash>=5.1 \
|
||||
openssh-server>=1:8.4p1 \
|
||||
libcap2>=1:2.44 \
|
||||
dumb-init>=1.2 \
|
||||
gnupg>=2.2 \
|
||||
openssl>=1.1.1n && \
|
||||
ca-certificates \
|
||||
curl \
|
||||
git \
|
||||
unzip \
|
||||
openssh-server \
|
||||
libcap2 \
|
||||
dumb-init \
|
||||
gnupg \
|
||||
openssl && \
|
||||
apt-get clean && \
|
||||
rm -rf /var/lib/apt/lists/*
|
||||
|
||||
|
||||
Reference in New Issue
Block a user