We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc6b108 commit 76b93f3Copy full SHA for 76b93f3
base/debian/Dockerfile
@@ -73,6 +73,14 @@ RUN set -eux; \
73
apt-get install -y ./libssl1.1.deb; \
74
rm libssl1.1.deb; \
75
\
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
+ \
84
# Set up locales
85
sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen; \
86
locale-gen; \
0 commit comments