diff options
| author | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-05 17:42:25 +0300 |
|---|---|---|
| committer | Mehmet Samet Duman <yongdohyun@projecttick.org> | 2026-04-05 17:42:25 +0300 |
| commit | 5876408e8819903afbe33540c3a0dfbfc39e4085 (patch) | |
| tree | 4819fd0b9a22845d09e020d5624b3f0bd1ed31ca /images4docker/dockerfiles/amazonlinux-2.Dockerfile | |
| parent | 9045c238ab3b80e6edace78fb7b1924b4ba487fd (diff) | |
| download | Project-Tick-5876408e8819903afbe33540c3a0dfbfc39e4085.tar.gz Project-Tick-5876408e8819903afbe33540c3a0dfbfc39e4085.zip | |
NOISSUE fixed some docker images
Signed-off-by: Mehmet Samet Duman <yongdohyun@projecttick.org>
Diffstat (limited to 'images4docker/dockerfiles/amazonlinux-2.Dockerfile')
| -rw-r--r-- | images4docker/dockerfiles/amazonlinux-2.Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/images4docker/dockerfiles/amazonlinux-2.Dockerfile b/images4docker/dockerfiles/amazonlinux-2.Dockerfile index 03e9277dac..d96e6d1c71 100644 --- a/images4docker/dockerfiles/amazonlinux-2.Dockerfile +++ b/images4docker/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; export PATH="$PATH:/usr/lib/qt6/bin:/usr/lib64/qt6/bin:/opt/qt6/bin:/root/.nix-profile/bin"; if command -v qmake6 >/dev/null 2>&1 || command -v qmake-qt6 >/dev/null 2>&1 || command -v qtpaths6 >/dev/null 2>&1 || [ -x /usr/lib/qt6/bin/qmake ] || [ -x /usr/lib64/qt6/bin/qmake ] || [ -x /usr/lib/qt6/bin/qtpaths ] || [ -x /usr/lib64/qt6/bin/qtpaths ]; then true; else echo "Qt6 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; export PATH="$PATH:/usr/lib/qt6/bin:/usr/lib64/qt6/bin:/opt/qt6/bin:/root/.nix-profile/bin"; if command -v qmake6 >/dev/null 2>&1 || command -v qmake-qt6 >/dev/null 2>&1 || command -v qtpaths6 >/dev/null 2>&1 || [ -x /usr/lib/qt6/bin/qmake ] || [ -x /usr/lib64/qt6/bin/qmake ] || [ -x /usr/lib/qt6/bin/qtpaths ] || [ -x /usr/lib64/qt6/bin/qtpaths ]; then true; else echo "Qt6 not available on this base image (skipped)" >&2; fi CMD ["/bin/sh"] |
