Skip to content
This repository has been archived by the owner on Aug 28, 2024. It is now read-only.

Latest commit

 

History

History
20 lines (15 loc) · 624 Bytes

Development.md

File metadata and controls

20 lines (15 loc) · 624 Bytes

Development references

Container Registry

AWS ECR

aws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws/l2n7y5s7
docker build -t slashdevops/idp-scim-sync .
docker tag slashdevops/idp-scim-sync:latest public.ecr.aws/l2n7y5s7/slashdevops/idp-scim-sync:latest
docker push public.ecr.aws/l2n7y5s7/slashdevops/idp-scim-sync:latest

Github Container Registry

echo $CR_PAT | docker login ghcr.io -u USERNAME --password-stdin
docker build -t ghcr.io/slashdevops/idp-scim-sync .
docker push ghcr.io/slashdevops/idp-scim-sync:latest