Skip to content

Commit d7de104

Browse files
committed
Test
1 parent 57ca21a commit d7de104

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docker/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,12 +23,12 @@ ENV JAVA_HOME="/usr/lib/jvm/jdk-${JDK_RELEASE_NAME}"
2323
RUN \
2424
set -xeuo pipefail && \
2525
uname -m && \
26-
dnf install -y tar gzip strace && \
26+
dnf install -y tar gzip && \
2727
# Install JDK from the provided archive link \
2828
echo "Downloading JDK from ${JDK_DOWNLOAD_LINK}" && \
2929
mkdir -p "${JAVA_HOME}" && \
3030
curl -#LfS --retry 8 "${JDK_DOWNLOAD_LINK}" -o /jdktarfile && \
31-
strace -f -e trace=mkdir,mkdirat,mknod,mknodat,chown,fchown,lchown,utimensat,setxattr,lsetxattr,open,openat tar -zxvvf /jdktarfile --no-same-owner --strip 1 -C "${JAVA_HOME}" && \
31+
tar -zxvvf /jdktarfile --no-same-owner --strip 1 -C "${JAVA_HOME}" && \
3232
echo "Done"
3333

3434
FROM ${TRINO_GATEWAY_BUILD_IMAGE} AS packages

0 commit comments

Comments
 (0)