From 4fee2e5e83e04c8a3401b1f767045bf3579ad6a4 Mon Sep 17 00:00:00 2001
From: Jared Kosanovic <jared.kosanovic@wisc.edu>
Date: Thu, 11 Jun 2020 11:49:59 -0500
Subject: [PATCH] Install py-pip instead of pyton

For some reason, the python package didn't include pip. Since we weren't using python for any other purpose in this build, I replaced it with py-pip.
---
 .gitlab-ci.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 6dcd6f7..46de7aa 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -5,7 +5,7 @@ before_script:
   - IMAGE_TAG=git-${CI_COMMIT_SHA:0:8}
   - IMAGE_NAME="enterprise-integrations/iics_secure_agent:${IMAGE_TAG}"
   - ECR_IMAGE_NAME="${AWS_ACCOUNT_ID}.dkr.ecr.us-east-1.amazonaws.com/enterprise-integrations/iics_secure_agent:${IMAGE_TAG}"
-  - apk update && apk add groff less && apk add python3
+  - apk update && apk add groff less && apk add py-pip
   - pip3 install awscli
   - $(aws ecr get-login --no-include-email --region us-east-1)
 
-- 
GitLab