Explorar el Código

force link for fixing gethue.com docker image to solve impala image path issue

(cherry picked from commit 6249b07348ec193dd748f46dc94225a98c140a2e)
(cherry picked from commit 11a4baaa5e9b9e4f5c1d09759c4881bcd6b9e1a2)
Prakash Ranade hace 2 años
padre
commit
11aab3d0f5
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      tools/docker/hue/Dockerfile

+ 2 - 2
tools/docker/hue/Dockerfile

@@ -42,8 +42,8 @@ RUN pip3 install --upgrade --no-cache-dir setuptools virtualenv pip && \
   rm -rf /hue/desktop/conf && \
   cp -r /hue/desktop/conf.dist /hue/desktop/conf && \
   cd /hue && \
-  ln -s /usr/local/bin/pip3.8 /usr/bin/pip3.8 && \
-  ln -s /usr/local/bin/pip3.8 /usr/bin/pip3 && \
+  ln -fs /usr/local/bin/pip3.8 /usr/bin/pip3.8 && \
+  ln -fs /usr/local/bin/pip3.8 /usr/bin/pip3 && \
   PROTOCOL_BUFFERS_PYTHON_IMPLEMENTATION=python \
   PREFIX=/usr/share ROOT=/usr/share/hue PYTHON_VER=python3.8 ROOT=/hue \
   SYS_PYTHON=/usr/bin/python3.8 SYS_PIP=/usr/local/bin/pip3.8 make apps install && \