Skip to content

Commit 76b93f3

Browse files
committed
fix: re-add ampinstmgr for tools version reporting
1 parent cc6b108 commit 76b93f3

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

base/debian/Dockerfile

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,14 @@ RUN set -eux; \
7373
apt-get install -y ./libssl1.1.deb; \
7474
rm libssl1.1.deb; \
7575
\
76+
# Install AMP instance manager
77+
case "${TARGETARCH}" in \
78+
amd64) wget -q https://cdn-repo.c7rs.com/ampinstmgr-latest.tgz;; \
79+
arm64) wget -q https://cdn-repo.c7rs.com/aarch64/ampinstmgr-latest.tgz;; \
80+
esac; \
81+
tar -xzf ampinstmgr-latest.tgz -C /; \
82+
rm ampinstmgr-latest.tgz; \
83+
\
7684
# Set up locales
7785
sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen; \
7886
locale-gen; \

0 commit comments

Comments
 (0)