From e1b93842fff1e0f7905f131e2912a39fbe51792e Mon Sep 17 00:00:00 2001
From: alex kuklin <alex@kuklin.eu>
Date: Fri, 15 Feb 2019 14:49:13 +0200
Subject: [PATCH] path fix

---
 Dockerfile | 7 +++----
 1 file changed, 3 insertions(+), 4 deletions(-)

diff --git a/Dockerfile b/Dockerfile
index ae481ea..6997895 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -11,13 +11,12 @@ VOLUME /srv/srv
 
 COPY . /srv/src/vcl
 
-RUN cd /srv/src/vcl && ls && \
-    mkdir -p $GOPATH/src/code.vereign.com/code && \
-    ln -s `pwd` $GOPATH/src/code.vereign.com/code/ &&  \
-    cd $GOPATH/src/code.vereign.com/code/vcl && \
+RUN  \
+    cd $GOPATH/src/vcl && \
     git config --global credential.https://code.vereign.com.username gitlab-ci-token && \
     git config --global credential.helper "store --file /tmp/store" && \
     echo https://gitlab-ci-token:$CI_JOB_TOKEN@code.vereign.com > /tmp/store && cat /tmp/store && \
 	export PKG=code.vereign.com/code/$CI_PROJECT_NAME && \
 	make && rm /tmp/store 
 
+    #ln -s `pwd` $GOPATH/src/code.vereign.com/code/ &&  \
-- 
GitLab