summaryrefslogtreecommitdiff
path: root/dockerfiles/amazonlinux-2.Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'dockerfiles/amazonlinux-2.Dockerfile')
-rw-r--r--dockerfiles/amazonlinux-2.Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/dockerfiles/amazonlinux-2.Dockerfile b/dockerfiles/amazonlinux-2.Dockerfile
index 9eda44020a..cd5719e058 100644
--- a/dockerfiles/amazonlinux-2.Dockerfile
+++ b/dockerfiles/amazonlinux-2.Dockerfile
@@ -8,6 +8,6 @@ ARG CLEAN_CMD=
SHELL ["/bin/sh", "-lc"]
-RUN set -eux; if [ -n "${UPDATE_CMD}" ]; then sh -lc "${UPDATE_CMD}"; fi; if [ -n "${CUSTOM_INSTALL}" ]; then sh -lc "${CUSTOM_INSTALL}"; elif [ -n "${PACKAGES}" ]; then yum install -y ${PACKAGES}; fi; if [ -n "${CLEAN_CMD}" ]; then sh -lc "${CLEAN_CMD}"; else yum clean all || true; fi; if command -v qmake6 >/dev/null 2>&1 || command -v qmake >/dev/null 2>&1 || command -v qtpaths6 >/dev/null 2>&1 || command -v qtpaths >/dev/null 2>&1; then true; else echo "Qt toolchain not found" >&2; exit 1; fi
+RUN set -eux; if [ -n "${UPDATE_CMD}" ]; then sh -lc "${UPDATE_CMD}"; fi; if [ -n "${CUSTOM_INSTALL}" ]; then sh -lc "${CUSTOM_INSTALL}"; elif [ -n "${PACKAGES}" ]; then yum install -y ${PACKAGES}; fi; if [ -n "${CLEAN_CMD}" ]; then sh -lc "${CLEAN_CMD}"; else yum clean all || true; fi; if command -v qmake6 >/dev/null 2>&1 || command -v qmake-qt6 >/dev/null 2>&1 || command -v qtpaths6 >/dev/null 2>&1; then true; else echo "Qt toolchain not found" >&2; exit 1; fi
CMD ["/bin/sh"]