mirror of
https://github.com/zabbix/zabbix-docker.git
synced 2024-11-25 01:04:01 +01:00
Fixed arch detection on Alpine
This commit is contained in:
parent
8b68831c2e
commit
ad32b8d7f2
@ -19,7 +19,7 @@ LABEL org.opencontainers.image.authors="Alexey Pustovalov <alexey.pustovalov@zab
|
||||
org.opencontainers.image.version="${ZBX_VERSION}"
|
||||
|
||||
RUN set -eux && \
|
||||
ARCH_SUFFIX="$(arch)"; \
|
||||
ARCH_SUFFIX="$(uname -m)"; \
|
||||
case "$ARCH_SUFFIX" in \
|
||||
i686) \
|
||||
openjdk_packages='openjdk8 openjdk8-jre-base'; \
|
||||
|
@ -31,7 +31,7 @@ COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_java/bin", "/usr/sbi
|
||||
COPY --from=builder ["/tmp/zabbix-${ZBX_VERSION}/src/zabbix_java/lib", "/usr/sbin/zabbix_java/lib"]
|
||||
|
||||
RUN set -eux && \
|
||||
ARCH_SUFFIX="$(arch)"; \
|
||||
ARCH_SUFFIX="$(uname -m)"; \
|
||||
case "$ARCH_SUFFIX" in \
|
||||
i686) \
|
||||
openjdk_packages='openjdk8-jre-base'; \
|
||||
|
Loading…
Reference in New Issue
Block a user