From 12a6d3ca0ae18d9e0c60b4f486e59ead0c8d9801 Mon Sep 17 00:00:00 2001 From: andrewso <9V5f1FkzI2LD> Date: Sat, 22 Feb 2020 23:50:57 +0000 Subject: [PATCH] [22.02.20] Main file not found testing --- Dockerfile | 2 +- configuration/pipelines/build.groovy | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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)