Skip to content
Snippets Groups Projects
Commit ac6bbda9 authored by SAM CARPENTER's avatar SAM CARPENTER
Browse files

remove pip3 from gitlab ci, replace with new method of unzipping file

parent 2d587504
No related branches found
No related tags found
1 merge request!57Python Addition
...@@ -7,8 +7,10 @@ variables: ...@@ -7,8 +7,10 @@ variables:
DOIT_REGISTRY_IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA DOIT_REGISTRY_IMAGE_TAG: $CI_REGISTRY_IMAGE:$CI_COMMIT_REF_SLUG-$CI_COMMIT_SHORT_SHA
before_script: before_script:
- apk update && apk add groff less && apk add py3-pip - apk update && apk add groff less && apk add unzip
- pip3 install awscli - curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip"
- unzip awscliv2.zip
- sudo ./aws/install
- $(aws ecr get-login --no-include-email --region us-east-1) - $(aws ecr get-login --no-include-email --region us-east-1)
- docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY - docker login -u $CI_REGISTRY_USER -p $CI_REGISTRY_PASSWORD $CI_REGISTRY
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment