From d93690029b0f1f0fb611ed57826bc61171ad19e8 Mon Sep 17 00:00:00 2001 From: Chuck Cox Date: Wed, 29 Jan 2020 15:27:18 -0600 Subject: [PATCH] chore: remove dupe dependency file again --- Dockerfile | 2 +- Dockerfile-tools | 2 +- Pipfile | 10 ++-------- requirements.txt | 5 ----- 4 files changed, 4 insertions(+), 15 deletions(-) mode change 100755 => 100644 Pipfile delete mode 100755 requirements.txt diff --git a/Dockerfile b/Dockerfile index 9ccf4f2..766ab5d 100755 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM registry.access.redhat.com/ubi8/python-36 WORKDIR /app -COPY requirements.txt /tmp/requirements.txt +COPY Pipfile* /app/ ## NOTE - rhel enforces user container permissions stronger ## USER root diff --git a/Dockerfile-tools b/Dockerfile-tools index a3fb728..7369c89 100755 --- a/Dockerfile-tools +++ b/Dockerfile-tools @@ -3,7 +3,7 @@ FROM registry.access.redhat.com/ubi8/ubi WORKDIR /app -COPY requirements.txt /tmp/requirements.txt +COPY Pipfile* /app/ # Install python3 RUN yum -y install --disableplugin=subscription-manager python36 \ diff --git a/Pipfile b/Pipfile old mode 100755 new mode 100644 index fabfc85..2f1f687 --- a/Pipfile +++ b/Pipfile @@ -1,17 +1,11 @@ [[source]] - -url = "https://pypi.python.org/simple" -verify_ssl = true name = "pypi" - +url = "https://pypi.org/simple" +verify_ssl = true [dev-packages] - [packages] -livereload ='*' -ibmcloudenv ='~=0.0' -flask = ">=1.0.0" gunicorn = "==19.7.1" ibmcloudenv = "*" livereload = "*" diff --git a/requirements.txt b/requirements.txt deleted file mode 100755 index 74f8b13..0000000 --- a/requirements.txt +++ /dev/null @@ -1,5 +0,0 @@ -Flask>=1.0.0 -gunicorn==19.7.1 -prometheus-client -ibmcloudenv -livereload