From b9dc726b9c498d200640e5e4921ded0fd8de2b5d Mon Sep 17 00:00:00 2001 From: arifiorino Date: Mon, 23 Sep 2019 01:11:37 +0000 Subject: [PATCH] Fixed CentOS bug. --- docker/Dockerfile.base-centos-7 | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docker/Dockerfile.base-centos-7 b/docker/Dockerfile.base-centos-7 index ebfbecc..e1d9748 100644 --- a/docker/Dockerfile.base-centos-7 +++ b/docker/Dockerfile.base-centos-7 @@ -17,8 +17,8 @@ RUN yum update -y \ && yum -y autoremove \ && yum clean metadata \ && yum clean all \ - && ln -s `which python3.6` /usr/bin/python3 \ - && ln -s `which pip3.6` /usr/bin/pip3 \ + && ln -sf `which python3.6` /usr/bin/python3 \ + && ln -sf `which pip3.6` /usr/bin/pip3 \ && wget https://services.gradle.org/distributions/${GRADLE_VERSION}-bin.zip \ && unzip ${GRADLE_VERSION}-bin.zip -d /opt \ && rm ${GRADLE_VERSION}-bin.zip \ @@ -28,4 +28,3 @@ RUN yum update -y \ && gradle --version \ && pip3 install -r /requirements.txt \ && rm /requirements.txt -