Skip to content

Commit 5405b49

Browse files
committed
[SPARK-44175] Remove useless lib64 path link in dockerfile
### What changes were proposed in this pull request? Remove useless lib64 path ### Why are the changes needed? Address comments: docker-library/official-images#13089 (comment) It was introduced by apache/spark@f13ea15 to address the issue about snappy on alpine OS, but we already switch the OS to ubuntu, so `/lib64` hack can be cleanup. ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? CI passed Closes #48 from Yikun/rm-lib64-hack. Authored-by: Yikun Jiang <[email protected]> Signed-off-by: Yikun Jiang <[email protected]>
1 parent 6022289 commit 5405b49

File tree

3 files changed

+0
-3
lines changed

3 files changed

+0
-3
lines changed

3.4.0/scala2.12-java11-ubuntu/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ RUN groupadd --system --gid=${spark_uid} spark && \
2323

2424
RUN set -ex; \
2525
apt-get update; \
26-
ln -s /lib /lib64; \
2726
apt-get install -y gnupg2 wget bash tini libc6 libpam-modules krb5-user libnss3 procps net-tools gosu libnss-wrapper; \
2827
mkdir -p /opt/spark; \
2928
mkdir /opt/spark/python; \

3.4.1/scala2.12-java11-ubuntu/Dockerfile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ RUN groupadd --system --gid=${spark_uid} spark && \
2323

2424
RUN set -ex; \
2525
apt-get update; \
26-
ln -s /lib /lib64; \
2726
apt-get install -y gnupg2 wget bash tini libc6 libpam-modules krb5-user libnss3 procps net-tools gosu libnss-wrapper; \
2827
mkdir -p /opt/spark; \
2928
mkdir /opt/spark/python; \

Dockerfile.template

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ RUN groupadd --system --gid=${spark_uid} spark && \
2323

2424
RUN set -ex; \
2525
apt-get update; \
26-
ln -s /lib /lib64; \
2726
apt-get install -y gnupg2 wget bash tini libc6 libpam-modules krb5-user libnss3 procps net-tools gosu libnss-wrapper; \
2827
mkdir -p /opt/spark; \
2928
mkdir /opt/spark/python; \

0 commit comments

Comments
 (0)