diff --git a/Dockerfile b/Dockerfile index e018fd6..d9cec97 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,4 +2,4 @@ FROM python:3.7-alpine MAINTAINER Andrew Sotheran COPY /* /home/price-collector/ EXPOSE 9090 -CMD ["src/main.py"] \ No newline at end of file +CMD ["python", "src/main.py"] \ No newline at end of file diff --git a/configuration/pipelines/build.groovy b/configuration/pipelines/build.groovy index 7970c1b..d684417 100644 --- a/configuration/pipelines/build.groovy +++ b/configuration/pipelines/build.groovy @@ -89,7 +89,7 @@ try { } stage('Deploy') { - sh "ls -la" + sh "pip --version" executeShellScript("configuration/scripts/deployToKubernetes.sh", env.APPLICATION_NAME)